OSDN Git Service

Move PedArchitecture and ped_set_architecture to private
[android-x86/external-parted.git] / include / parted / parted.h
1 /*
2     libparted - a library for manipulating disk partitions
3     Copyright (C) 1999, 2000, 2001, 2007 Free Software Foundation, Inc.
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 3 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #ifndef PARTED_H_INCLUDED
20 #define PARTED_H_INCLUDED
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 #include <parted/constraint.h>
27 #include <parted/device.h>
28 #include <parted/disk.h>
29 #include <parted/exception.h>
30 #include <parted/filesys.h>
31 #include <parted/natmath.h>
32 #include <parted/unit.h>
33
34 #include <stdint.h>
35 #include <stdlib.h>
36 #include <string.h>
37
38 extern const char* ped_get_version ();
39
40 extern void* ped_malloc (size_t size);
41 extern void* ped_calloc (size_t size);
42 extern int ped_realloc (void** ptr, size_t size);
43 extern void ped_free (void* ptr);
44
45 #ifdef __cplusplus
46 }
47 #endif
48
49 #endif /* PARTED_H_INCLUDED */