OSDN Git Service

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