Changeset 28ed0d95 in mainline for uspace/lib/c/include
- Timestamp:
- 2015-06-27T19:50:12Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 78d50bd
- Parents:
- 22fb7ab
- Location:
- uspace/lib/c/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/vbd.h
r22fb7ab r28ed0d95 41 41 VBD_DISK_INFO, 42 42 VBD_LABEL_CREATE, 43 VBD_LABEL_DELETE 43 VBD_LABEL_DELETE, 44 VBD_LABEL_GET_PARTS, 45 VBD_PART_GET_INFO, 46 VBD_PART_CREATE, 47 VBD_PART_DELETE, 44 48 } vbd_request_t; 45 49 -
uspace/lib/c/include/vbd.h
r22fb7ab r28ed0d95 52 52 } vbd_disk_info_t; 53 53 54 typedef struct { 55 } vbd_part_spec_t; 56 57 typedef struct { 58 } vbd_part_info_t; 59 60 typedef sysarg_t vbd_part_id_t; 61 54 62 extern int vbd_create(vbd_t **); 55 63 extern void vbd_destroy(vbd_t *); … … 59 67 extern int vbd_label_create(vbd_t *, service_id_t, label_type_t); 60 68 extern int vbd_label_delete(vbd_t *, service_id_t); 69 extern int vbd_label_get_parts(vbd_t *, service_id_t, service_id_t **, 70 size_t *); 71 extern int vbd_part_get_info(vbd_t *, vbd_part_id_t, vbd_part_info_t *); 72 extern int vbd_part_create(vbd_t *, service_id_t, vbd_part_spec_t *, 73 vbd_part_id_t *); 74 extern int vbd_part_delete(vbd_t *, vbd_part_id_t); 75 extern void vbd_pspec_init(vbd_part_spec_t *); 61 76 62 77 #endif
Note:
See TracChangeset
for help on using the changeset viewer.