Changeset 372df8f in mainline for uspace/lib/c/include/vol.h
- Timestamp:
- 2015-10-09T07:00:23Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ecfc62
- Parents:
- 0bde8523
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/vol.h
r0bde8523 r372df8f 47 47 } vol_t; 48 48 49 /** Diskinformation */49 /** Partition information */ 50 50 typedef struct { 51 /** Diskcontents */51 /** Partition contents */ 52 52 label_disk_cnt_t dcnt; 53 /** Label type, if disk contents is label*/53 /** Label type, if partition contents is label XXX */ 54 54 label_type_t ltype; 55 55 /** Label flags */ 56 56 label_flags_t flags; 57 } vol_ disk_info_t;57 } vol_part_info_t; 58 58 59 59 extern int vol_create(vol_t **); 60 60 extern void vol_destroy(vol_t *); 61 extern int vol_get_disks(vol_t *, service_id_t **, size_t *); 62 extern int vol_disk_info(vol_t *, service_id_t, vol_disk_info_t *); 63 extern int vol_label_create(vol_t *, service_id_t, label_type_t); 64 extern int vol_disk_empty(vol_t *, service_id_t); 61 extern int vol_get_parts(vol_t *, service_id_t **, size_t *); 62 extern int vol_part_info(vol_t *, service_id_t, vol_part_info_t *); 63 extern int vol_part_empty(vol_t *, service_id_t); 65 64 66 65 #endif
Note:
See TracChangeset
for help on using the changeset viewer.