~ubuntu-branches/ubuntu/quantal/gbonds/quantal

« back to all changes in this revision

Viewing changes to src/marshal.h

  • Committer: Bazaar Package Importer
  • Author(s): Richard Laager
  • Date: 2007-03-14 23:50:34 UTC
  • Revision ID: james.westby@ubuntu.com-20070314235034-997qegw33jx0wb9r
Tags: upstream-2.0.2
ImportĀ upstreamĀ versionĀ 2.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef __gb_marshal_MARSHAL_H__
 
3
#define __gb_marshal_MARSHAL_H__
 
4
 
 
5
#include        <glib-object.h>
 
6
 
 
7
G_BEGIN_DECLS
 
8
 
 
9
/* VOID:VOID (marshal.list:1) */
 
10
#define gb_marshal_VOID__VOID   g_cclosure_marshal_VOID__VOID
 
11
 
 
12
/* VOID:BOOLEAN (marshal.list:2) */
 
13
#define gb_marshal_VOID__BOOLEAN        g_cclosure_marshal_VOID__BOOLEAN
 
14
 
 
15
/* VOID:INT (marshal.list:3) */
 
16
#define gb_marshal_VOID__INT    g_cclosure_marshal_VOID__INT
 
17
 
 
18
/* VOID:INT,INT (marshal.list:4) */
 
19
extern void gb_marshal_VOID__INT_INT (GClosure     *closure,
 
20
                                      GValue       *return_value,
 
21
                                      guint         n_param_values,
 
22
                                      const GValue *param_values,
 
23
                                      gpointer      invocation_hint,
 
24
                                      gpointer      marshal_data);
 
25
 
 
26
/* VOID:INT,DOUBLE (marshal.list:5) */
 
27
extern void gb_marshal_VOID__INT_DOUBLE (GClosure     *closure,
 
28
                                         GValue       *return_value,
 
29
                                         guint         n_param_values,
 
30
                                         const GValue *param_values,
 
31
                                         gpointer      invocation_hint,
 
32
                                         gpointer      marshal_data);
 
33
 
 
34
/* VOID:DOUBLE (marshal.list:6) */
 
35
#define gb_marshal_VOID__DOUBLE g_cclosure_marshal_VOID__DOUBLE
 
36
 
 
37
/* VOID:DOUBLE,DOUBLE (marshal.list:7) */
 
38
extern void gb_marshal_VOID__DOUBLE_DOUBLE (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
/* VOID:STRING (marshal.list:8) */
 
46
#define gb_marshal_VOID__STRING g_cclosure_marshal_VOID__STRING
 
47
 
 
48
/* BOOLEAN:OBJECT (marshal.list:9) */
 
49
extern void gb_marshal_BOOLEAN__OBJECT (GClosure     *closure,
 
50
                                        GValue       *return_value,
 
51
                                        guint         n_param_values,
 
52
                                        const GValue *param_values,
 
53
                                        gpointer      invocation_hint,
 
54
                                        gpointer      marshal_data);
 
55
 
 
56
G_END_DECLS
 
57
 
 
58
#endif /* __gb_marshal_MARSHAL_H__ */
 
59