Changes in uspace/app/hdisk/func_none.c [6e8e4e19:a2aa81cb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/hdisk/func_none.c
r6e8e4e19 ra2aa81cb 41 41 42 42 43 int construct_none_label(label_t *this) 44 { 45 this->layout = LYT_NONE; 46 47 this->add_part = add_none_part; 48 this->delete_part = delete_none_part; 49 this->destroy_label = destroy_none_label; 50 this->new_label = new_none_label; 51 this->print_parts = print_none_parts; 52 this->read_parts = read_none_parts; 53 this->write_parts = write_none_parts; 54 this->extra_funcs = extra_none_funcs; 55 56 return EOK; 57 } 58 59 int add_none_part(label_t *this, tinput_t * in) 43 int add_none_part(tinput_t *in, union label_data *data) 60 44 { 61 45 not_implemented(); … … 63 47 } 64 48 65 int delete_none_part( label_t *this, tinput_t * in)49 int delete_none_part(tinput_t *in, union label_data *data) 66 50 { 67 51 not_implemented(); … … 69 53 } 70 54 71 int destroy_none_label(label_t *this) 72 { 73 return EOK; 74 } 75 76 int new_none_label(label_t *this) 55 int destroy_none_label(union label_data *data) 77 56 { 78 57 not_implemented(); … … 80 59 } 81 60 82 int print_none_parts(label_t *this)61 int new_none_label(union label_data *data) 83 62 { 84 63 not_implemented(); … … 86 65 } 87 66 88 int read_none_parts(label_t *this, service_id_t dev_handle)67 int print_none_parts(union label_data *data) 89 68 { 90 69 not_implemented(); … … 92 71 } 93 72 94 int write_none_parts(label_t *this, service_id_t dev_handle)73 int read_none_parts(service_id_t dev_handle, union label_data *data) 95 74 { 96 75 not_implemented(); … … 98 77 } 99 78 100 int extra_none_funcs(label_t *this, tinput_t * in, service_id_t dev_handle) 79 int write_none_parts(service_id_t dev_handle, union label_data *data) 80 { 81 not_implemented(); 82 return EOK; 83 } 84 85 int extra_none_funcs(tinput_t *in, service_id_t dev_handle, union label_data *data) 101 86 { 102 87 not_implemented();
Note:
See TracChangeset
for help on using the changeset viewer.