~youscribe/parted/3.1

« back to all changes in this revision

Viewing changes to include/parted/parted.in.h

  • Committer: Guilhem Lettron
  • Date: 2012-10-22 14:37:59 UTC
  • Revision ID: guilhem+ubuntu@lettron.fr-20121022143759-m403kecgz13sknvp
3.1 from tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    libparted - a library for manipulating disk partitions
 
3
    Copyright (C) 1999-2001, 2007, 2009-2012 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
#define PED_DEFAULT_ALIGNMENT (1024 * 1024)
 
23
 
 
24
#ifdef __cplusplus
 
25
extern "C" {
 
26
#endif
 
27
 
 
28
#if __GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
 
29
# define __attribute(arg) __attribute__ (arg)
 
30
#else
 
31
# define __attribute(arg)
 
32
#endif
 
33
 
 
34
#include <parted/constraint.h>
 
35
#include <parted/device.h>
 
36
#include <parted/disk.h>
 
37
#include <parted/exception.h>
 
38
#include <parted/filesys.h>
 
39
#include <parted/natmath.h>
 
40
#include <parted/unit.h>
 
41
 
 
42
#include <stdint.h>
 
43
#include <stdlib.h>
 
44
#include <string.h>
 
45
 
 
46
extern const char *ped_get_version () _GL_ATTRIBUTE_CONST;
 
47
 
 
48
extern void* ped_malloc (size_t size);
 
49
extern void* ped_calloc (size_t size);
 
50
extern void free (void* ptr);
 
51
 
 
52
#ifdef __cplusplus
 
53
}
 
54
#endif
 
55
 
 
56
#endif /* PARTED_H_INCLUDED */