1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
#ifndef __sp_marshal_MARSHAL_H__
#define __sp_marshal_MARSHAL_H__
#include <glib-object.h>
G_BEGIN_DECLS
/* NONE:NONE (sp-marshal.list:2) */
#define sp_marshal_VOID__VOID g_cclosure_marshal_VOID__VOID
#define sp_marshal_NONE__NONE sp_marshal_VOID__VOID
/* NONE:UINT (sp-marshal.list:3) */
#define sp_marshal_VOID__UINT g_cclosure_marshal_VOID__UINT
#define sp_marshal_NONE__UINT sp_marshal_VOID__UINT
/* NONE:POINTER (sp-marshal.list:4) */
#define sp_marshal_VOID__POINTER g_cclosure_marshal_VOID__POINTER
#define sp_marshal_NONE__POINTER sp_marshal_VOID__POINTER
/* NONE:POINTER,BOOLEAN (sp-marshal.list:5) */
extern void sp_marshal_VOID__POINTER_BOOLEAN (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
#define sp_marshal_NONE__POINTER_BOOLEAN sp_marshal_VOID__POINTER_BOOLEAN
/* NONE:POINTER,UINT (sp-marshal.list:6) */
extern void sp_marshal_VOID__POINTER_UINT (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
#define sp_marshal_NONE__POINTER_UINT sp_marshal_VOID__POINTER_UINT
/* NONE:POINTER,DOUBLE (sp-marshal.list:7) */
extern void sp_marshal_VOID__POINTER_DOUBLE (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
#define sp_marshal_NONE__POINTER_DOUBLE sp_marshal_VOID__POINTER_DOUBLE
/* NONE:DOUBLE,DOUBLE (sp-marshal.list:8) */
extern void sp_marshal_VOID__DOUBLE_DOUBLE (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
#define sp_marshal_NONE__DOUBLE_DOUBLE sp_marshal_VOID__DOUBLE_DOUBLE
/* NONE:STRING,BOOL (sp-marshal.list:9) */
extern void sp_marshal_VOID__STRING_BOOLEAN (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
#define sp_marshal_NONE__STRING_BOOL sp_marshal_VOID__STRING_BOOLEAN
/* BOOLEAN:NONE (sp-marshal.list:10) */
extern void sp_marshal_BOOLEAN__VOID (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
#define sp_marshal_BOOLEAN__NONE sp_marshal_BOOLEAN__VOID
/* BOOLEAN:UINT (sp-marshal.list:11) */
extern void sp_marshal_BOOLEAN__UINT (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
/* BOOLEAN:POINTER (sp-marshal.list:12) */
extern void sp_marshal_BOOLEAN__POINTER (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
/* BOOLEAN:POINTER,UINT (sp-marshal.list:13) */
extern void sp_marshal_BOOLEAN__POINTER_UINT (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
/* BOOLEAN:POINTER,POINTER (sp-marshal.list:14) */
extern void sp_marshal_BOOLEAN__POINTER_POINTER (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
/* INT:POINTER,POINTER (sp-marshal.list:15) */
extern void sp_marshal_INT__POINTER_POINTER (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
/* DOUBLE:POINTER,UINT (sp-marshal.list:16) */
extern void sp_marshal_DOUBLE__POINTER_UINT (GClosure *closure,
GValue *return_value,
guint n_param_values,
const GValue *param_values,
gpointer invocation_hint,
gpointer marshal_data);
G_END_DECLS
#endif /* __sp_marshal_MARSHAL_H__ */
|