5198e256a435bf5709d668fc5444e37005a442b8
[debian/amanda] / perl / amglue / glib.swg
1 /*
2  * Copyright (c) Zmanda, Inc.  All Rights Reserved.
3  *
4  * This library is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU Lesser General Public License version 2.1
6  * as published by the Free Software Foundation.
7  *
8  * This library is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
11  * License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this library; if not, write to the Free Software Foundation,
15  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA.
16  *
17  * Contact information: Zmanda Inc., 465 S Mathlida Ave, Suite 300
18  * Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
19  */
20
21 /* Typedefs for a few glib basic types that SWIG doesn't recognize
22  * automatically.  Integers are handled specially; see bigint.{swg,c}
23  */
24
25 %{
26 #include "amglue.h"
27 %}
28
29 typedef int gboolean;
30 typedef void *gpointer;
31 typedef void *gconstpointer;
32
33 typedef char gchar;
34 typedef unsigned char guchar;
35
36 typedef float gfloat;
37 typedef double gdouble;