Changeset 6453e306 in mainline for uspace/app/hdisk/func_gpt.h
- Timestamp:
- 2013-12-25T16:09:43Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ac36aed
- Parents:
- d51beba3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/hdisk/func_gpt.h
rd51beba3 r6453e306 1 1 /* 2 * Copyright (c) 2012 ,2013 Dominik Taborsky2 * Copyright (c) 2012-2013 Dominik Taborsky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 29 /** @addtogroup hdisk 30 30 * @{ 31 31 */ … … 34 34 35 35 #ifndef __FUNC_GPT_H__ 36 #define 36 #define __FUNC_GPT_H__ 37 37 38 38 #include <loc.h> 39 39 #include <tinput.h> 40 40 #include <libgpt.h> 41 42 41 #include "common.h" 43 42 44 43 extern int construct_gpt_label(label_t *); 45 extern int add_gpt_part 46 extern int delete_gpt_part 44 extern int add_gpt_part(label_t *, tinput_t *); 45 extern int delete_gpt_part(label_t *, tinput_t *); 47 46 extern int destroy_gpt_label(label_t *); 48 extern int new_gpt_label 49 extern int print_gpt_parts 50 extern int read_gpt_parts 51 extern int write_gpt_parts 52 extern int extra_gpt_funcs 47 extern int new_gpt_label(label_t *); 48 extern int print_gpt_parts(label_t *); 49 extern int read_gpt_parts(label_t *); 50 extern int write_gpt_parts(label_t *); 51 extern int extra_gpt_funcs(label_t *, tinput_t *); 53 52 54 53 #endif
Note:
See TracChangeset
for help on using the changeset viewer.