Changeset 9c2c7d2 in mainline for uspace/lib/c/include
- Timestamp:
- 2017-07-06T15:52:15Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5cd1eb9a
- Parents:
- d858a660
- Location:
- uspace/lib/c/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/vol.h
rd858a660 r9c2c7d2 43 43 VOL_PART_INFO, 44 44 VOL_PART_EMPTY, 45 VOL_PART_MKFS 45 VOL_PART_LSUPP, 46 VOL_PART_MKFS, 46 47 } vol_request_t; 47 48 -
uspace/lib/c/include/types/vol.h
rd858a660 r9c2c7d2 38 38 #include <async.h> 39 39 #include <ipc/vol.h> 40 #include <stdbool.h> 40 41 41 42 typedef enum { … … 76 77 } vol_part_info_t; 77 78 79 /** Volume label support */ 80 typedef struct { 81 /** Volume labels are supported */ 82 bool supported; 83 } vol_label_supp_t; 84 78 85 #endif 79 86 -
uspace/lib/c/include/vol.h
rd858a660 r9c2c7d2 48 48 extern int vol_part_info(vol_t *, service_id_t, vol_part_info_t *); 49 49 extern int vol_part_empty(vol_t *, service_id_t); 50 extern int vol_part_mkfs(vol_t *, service_id_t, vol_fstype_t); 50 extern int vol_part_get_lsupp(vol_t *, vol_fstype_t, vol_label_supp_t *); 51 extern int vol_part_mkfs(vol_t *, service_id_t, vol_fstype_t, const char *); 51 52 52 53 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
