~ubuntu-branches/ubuntu/precise/gnome-bluetooth/precise-updates

« back to all changes in this revision

Viewing changes to lib/marshal.h

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-05 13:34:38 UTC
  • mto: (2.2.1 experimental) (1.4.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: james.westby@ubuntu.com-20090805133438-791u4ywsppj71d9y
Tags: upstream-2.27.8
ImportĀ upstreamĀ versionĀ 2.27.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef __marshal_MARSHAL_H__
 
3
#define __marshal_MARSHAL_H__
 
4
 
 
5
#include        <glib-object.h>
 
6
 
 
7
G_BEGIN_DECLS
 
8
 
 
9
/* VOID:STRING,BOXED (marshal.list:1) */
 
10
extern void marshal_VOID__STRING_BOXED (GClosure     *closure,
 
11
                                        GValue       *return_value,
 
12
                                        guint         n_param_values,
 
13
                                        const GValue *param_values,
 
14
                                        gpointer      invocation_hint,
 
15
                                        gpointer      marshal_data);
 
16
 
 
17
/* VOID:STRING,STRING (marshal.list:3) */
 
18
extern void marshal_VOID__STRING_STRING (GClosure     *closure,
 
19
                                         GValue       *return_value,
 
20
                                         guint         n_param_values,
 
21
                                         const GValue *param_values,
 
22
                                         gpointer      invocation_hint,
 
23
                                         gpointer      marshal_data);
 
24
 
 
25
/* VOID:STRING,STRING,UINT64 (marshal.list:4) */
 
26
extern void marshal_VOID__STRING_STRING_UINT64 (GClosure     *closure,
 
27
                                                GValue       *return_value,
 
28
                                                guint         n_param_values,
 
29
                                                const GValue *param_values,
 
30
                                                gpointer      invocation_hint,
 
31
                                                gpointer      marshal_data);
 
32
 
 
33
/* VOID:UINT64 (marshal.list:5) */
 
34
extern void marshal_VOID__UINT64 (GClosure     *closure,
 
35
                                  GValue       *return_value,
 
36
                                  guint         n_param_values,
 
37
                                  const GValue *param_values,
 
38
                                  gpointer      invocation_hint,
 
39
                                  gpointer      marshal_data);
 
40
 
 
41
/* VOID:STRING,STRING,STRING (marshal.list:6) */
 
42
extern void marshal_VOID__STRING_STRING_STRING (GClosure     *closure,
 
43
                                                GValue       *return_value,
 
44
                                                guint         n_param_values,
 
45
                                                const GValue *param_values,
 
46
                                                gpointer      invocation_hint,
 
47
                                                gpointer      marshal_data);
 
48
 
 
49
G_END_DECLS
 
50
 
 
51
#endif /* __marshal_MARSHAL_H__ */
 
52