summaryrefslogtreecommitdiff
path: root/src/lib/cross.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/cross.h')
-rw-r--r--src/lib/cross.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/cross.h b/src/lib/cross.h
index 1906acef7..ac1f028f4 100644
--- a/src/lib/cross.h
+++ b/src/lib/cross.h
@@ -147,7 +147,22 @@ struct OSXMediaPath
};
+
+struct OSXDisk
+{
+ std::string mount_point;
+ boost::optional<std::string> vendor;
+ boost::optional<std::string> model;
+ bool real;
+ std::string prt;
+ bool whole;
+ std::vector<boost::filesystem::path> mount_points;
+ unsigned long size;
+};
+
+
boost::optional<OSXMediaPath> analyse_osx_media_path (std::string path);
+std::vector<Drive> osx_disks_to_drives (std::vector<OSXDisk> disks);
#endif