Changeset 271e24a in mainline for uspace/app/hdisk/func_mbr.h
- Timestamp:
- 2013-03-24T00:12:25Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 30440ed
- Parents:
- ec50ac4a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/hdisk/func_mbr.h
rec50ac4a r271e24a 34 34 35 35 #ifndef __FUNC_MBR_H__ 36 #def __FUNC_MBR_H__36 #define __FUNC_MBR_H__ 37 37 38 int add_mbr_part(tinput_t * in, mbr_parts_t * parts); 39 int delete_mbr_part(tinput_t * in, mbr_parts_t * parts); 40 extern void print_mbr_partitions(mbr_parts_t * parts); 41 extern void write_mbr_parts(mbr_parts_t * parts, mbr_t * mbr, service_id_t dev_handle); 38 #include <loc.h> 39 #include <tinput.h> 40 #include <libmbr.h> 41 42 #include "common.h" 43 44 extern int add_mbr_part(tinput_t * in, union table_data * data); 45 extern int delete_mbr_part(tinput_t * in, union table_data * data); 46 extern int print_mbr_parts(union table_data * data); 47 extern int write_mbr_parts(service_id_t dev_handle, union table_data * data); 42 48 43 49 #endif
Note:
See TracChangeset
for help on using the changeset viewer.