1 /* -*- Mode: C; tab-width: 3; indent-tabs-mode: nil; c-basic-offset: 3 -*- */
2 
3 /*
4  * marshal.c - custom marshals collection.
5  * Copyright (C) 2001-2002 Takuro Ashie
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 3S30, Boston, MA 02111-1307, USA.
20  *
21  * $Id: gimv_marshal.h,v 1.2 2003/06/13 09:43:32 makeinu Exp $
22  */
23 
24 
25 #ifndef __MARSHAL_H__
26 #define __MARSHAL_H__
27 
28 #ifdef HAVE_CONFIG_H
29 #  include <config.h>
30 #endif /* HAVE_CONFIG_H */
31 
32 #include <gtk/gtk.h>
33 
34 #if (GTK_MAJOR_VERSION >= 2)
35 
36 #include	<glib-object.h>
37 
38 extern void gtk_marshal_INT__INT_INT (GClosure     *closure,
39                                       GValue       *return_value,
40                                       guint         n_param_values,
41                                       const GValue *param_values,
42                                       gpointer      invocation_hint,
43                                       gpointer      marshal_data);
44 
45 #else /* (GTK_MAJOR_VERSION >= 2) */
46 
47 #include <gtk/gtktypeutils.h>
48 #include <gtk/gtkobject.h>
49 
50 void gtk_marshal_INT__INT_INT (GtkObject * object,
51                                GtkSignalFunc func,
52                                gpointer func_data, GtkArg * args);
53 
54 #endif /* (GTK_MAJOR_VERSION >= 2) */
55 
56 #endif /* __MARSHAL_H__ */
57