~walkerlee/totem/pre-interview

« back to all changes in this revision

Viewing changes to src/backend/baconvideowidget-marshal.c

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-05-26 00:07:51 UTC
  • mfrom: (1.6.1) (24.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20130526000751-kv8ap3x1di4qq8j2
Tags: 3.8.2-0ubuntu1
* Sync with Debian. Remaining changes: 
* debian/control.in:
  - Drop build-depends on libepc-ui-dev and libgrilo-0.2-dev (in universe)
  - Drop libxtst-dev build-depends so that the (redundant) fake key presses
    for inhibiting the screensaver are disabled (LP: #1007438)
  - Build-depend on libzeitgeist-dev
  - Suggest rather than recommend gstreamer components in universe
  - Add totem-plugins-extra
  - Add XB-Npp-Description and XB-Npp-Filename header to the 
    totem-mozilla package to improve ubufox/ubuntu plugin db integration 
  - Refer to Firefox in totem-mozilla description instead of Iceweasel
  - Don't have totem-mozilla recommend any particular browser
  - Drop obsolete python library dependencies since iplayer is no longer
    included
* debian/totem-common.install, debian/source_totem.py:
  - Install Ubuntu apport debugging hook
* debian/totem-plugins-extra.install:
  - Universe plugins split out of totem-plugins (currently only gromit)
* debian/totem-plugins.install:    
  - Skip the plugins split to -extra and add the zeitgeist plugin
* debian/rules:
  - Build with --fail-missing, to ensure we install everything. 
    + Ignore libtotem.{,l}a since we delibrately don't install these.
  - Re-enable hardening, make sure both PIE and BINDNOW are used
    by setting hardening=+all. (LP: #1039604)
* debian/patches/91_quicklist_entries.patch:
  - Add static quicklist
* debian/patches/92_gst-plugins-good.patch:
  - Build without unnecessary gstreamer1.0-bad dependency
* debian/patches/93_grilo_optional.patch:
  - Allow building without grilo while grilo MIR is still pending
* debian/patches/correct_desktop_mimetypes.patch:
  - Don't list the mimetypes after the unity lists
* debian/patches/revert_shell_menu.patch: 
  - revert the use of a shell menu until indicator-appmenu can handle
    the mixed shell/traditional menus itself
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
#ifndef __baconvideowidget_marshal_MARSHAL_H__
3
 
#define __baconvideowidget_marshal_MARSHAL_H__
4
 
 
5
 
#include        <glib-object.h>
6
 
 
7
 
G_BEGIN_DECLS
8
 
 
9
 
#ifdef G_ENABLE_DEBUG
10
 
#define g_marshal_value_peek_boolean(v)  g_value_get_boolean (v)
11
 
#define g_marshal_value_peek_char(v)     g_value_get_char (v)
12
 
#define g_marshal_value_peek_uchar(v)    g_value_get_uchar (v)
13
 
#define g_marshal_value_peek_int(v)      g_value_get_int (v)
14
 
#define g_marshal_value_peek_uint(v)     g_value_get_uint (v)
15
 
#define g_marshal_value_peek_long(v)     g_value_get_long (v)
16
 
#define g_marshal_value_peek_ulong(v)    g_value_get_ulong (v)
17
 
#define g_marshal_value_peek_int64(v)    g_value_get_int64 (v)
18
 
#define g_marshal_value_peek_uint64(v)   g_value_get_uint64 (v)
19
 
#define g_marshal_value_peek_enum(v)     g_value_get_enum (v)
20
 
#define g_marshal_value_peek_flags(v)    g_value_get_flags (v)
21
 
#define g_marshal_value_peek_float(v)    g_value_get_float (v)
22
 
#define g_marshal_value_peek_double(v)   g_value_get_double (v)
23
 
#define g_marshal_value_peek_string(v)   (char*) g_value_get_string (v)
24
 
#define g_marshal_value_peek_param(v)    g_value_get_param (v)
25
 
#define g_marshal_value_peek_boxed(v)    g_value_get_boxed (v)
26
 
#define g_marshal_value_peek_pointer(v)  g_value_get_pointer (v)
27
 
#define g_marshal_value_peek_object(v)   g_value_get_object (v)
28
 
#define g_marshal_value_peek_variant(v)  g_value_get_variant (v)
29
 
#else /* !G_ENABLE_DEBUG */
30
 
/* WARNING: This code accesses GValues directly, which is UNSUPPORTED API.
31
 
 *          Do not access GValues directly in your code. Instead, use the
32
 
 *          g_value_get_*() functions
33
 
 */
34
 
#define g_marshal_value_peek_boolean(v)  (v)->data[0].v_int
35
 
#define g_marshal_value_peek_char(v)     (v)->data[0].v_int
36
 
#define g_marshal_value_peek_uchar(v)    (v)->data[0].v_uint
37
 
#define g_marshal_value_peek_int(v)      (v)->data[0].v_int
38
 
#define g_marshal_value_peek_uint(v)     (v)->data[0].v_uint
39
 
#define g_marshal_value_peek_long(v)     (v)->data[0].v_long
40
 
#define g_marshal_value_peek_ulong(v)    (v)->data[0].v_ulong
41
 
#define g_marshal_value_peek_int64(v)    (v)->data[0].v_int64
42
 
#define g_marshal_value_peek_uint64(v)   (v)->data[0].v_uint64
43
 
#define g_marshal_value_peek_enum(v)     (v)->data[0].v_long
44
 
#define g_marshal_value_peek_flags(v)    (v)->data[0].v_ulong
45
 
#define g_marshal_value_peek_float(v)    (v)->data[0].v_float
46
 
#define g_marshal_value_peek_double(v)   (v)->data[0].v_double
47
 
#define g_marshal_value_peek_string(v)   (v)->data[0].v_pointer
48
 
#define g_marshal_value_peek_param(v)    (v)->data[0].v_pointer
49
 
#define g_marshal_value_peek_boxed(v)    (v)->data[0].v_pointer
50
 
#define g_marshal_value_peek_pointer(v)  (v)->data[0].v_pointer
51
 
#define g_marshal_value_peek_object(v)   (v)->data[0].v_pointer
52
 
#define g_marshal_value_peek_variant(v)  (v)->data[0].v_pointer
53
 
#endif /* !G_ENABLE_DEBUG */
54
 
 
55
 
 
56
 
/* VOID:INT64,INT64,DOUBLE,BOOLEAN (./baconvideowidget-marshal.list:1) */
57
 
extern void baconvideowidget_marshal_VOID__INT64_INT64_DOUBLE_BOOLEAN (GClosure     *closure,
58
 
                                                                       GValue       *return_value,
59
 
                                                                       guint         n_param_values,
60
 
                                                                       const GValue *param_values,
61
 
                                                                       gpointer      invocation_hint,
62
 
                                                                       gpointer      marshal_data);
63
 
void
64
 
baconvideowidget_marshal_VOID__INT64_INT64_DOUBLE_BOOLEAN (GClosure     *closure,
65
 
                                                           GValue       *return_value G_GNUC_UNUSED,
66
 
                                                           guint         n_param_values,
67
 
                                                           const GValue *param_values,
68
 
                                                           gpointer      invocation_hint G_GNUC_UNUSED,
69
 
                                                           gpointer      marshal_data)
70
 
{
71
 
  typedef void (*GMarshalFunc_VOID__INT64_INT64_DOUBLE_BOOLEAN) (gpointer     data1,
72
 
                                                                 gint64       arg_1,
73
 
                                                                 gint64       arg_2,
74
 
                                                                 gdouble      arg_3,
75
 
                                                                 gboolean     arg_4,
76
 
                                                                 gpointer     data2);
77
 
  register GMarshalFunc_VOID__INT64_INT64_DOUBLE_BOOLEAN callback;
78
 
  register GCClosure *cc = (GCClosure*) closure;
79
 
  register gpointer data1, data2;
80
 
 
81
 
  g_return_if_fail (n_param_values == 5);
82
 
 
83
 
  if (G_CCLOSURE_SWAP_DATA (closure))
84
 
    {
85
 
      data1 = closure->data;
86
 
      data2 = g_value_peek_pointer (param_values + 0);
87
 
    }
88
 
  else
89
 
    {
90
 
      data1 = g_value_peek_pointer (param_values + 0);
91
 
      data2 = closure->data;
92
 
    }
93
 
  callback = (GMarshalFunc_VOID__INT64_INT64_DOUBLE_BOOLEAN) (marshal_data ? marshal_data : cc->callback);
94
 
 
95
 
  callback (data1,
96
 
            g_marshal_value_peek_int64 (param_values + 1),
97
 
            g_marshal_value_peek_int64 (param_values + 2),
98
 
            g_marshal_value_peek_double (param_values + 3),
99
 
            g_marshal_value_peek_boolean (param_values + 4),
100
 
            data2);
101
 
}
102
 
 
103
 
/* VOID:STRING,BOOLEAN,BOOLEAN (./baconvideowidget-marshal.list:2) */
104
 
extern void baconvideowidget_marshal_VOID__STRING_BOOLEAN_BOOLEAN (GClosure     *closure,
105
 
                                                                   GValue       *return_value,
106
 
                                                                   guint         n_param_values,
107
 
                                                                   const GValue *param_values,
108
 
                                                                   gpointer      invocation_hint,
109
 
                                                                   gpointer      marshal_data);
110
 
void
111
 
baconvideowidget_marshal_VOID__STRING_BOOLEAN_BOOLEAN (GClosure     *closure,
112
 
                                                       GValue       *return_value G_GNUC_UNUSED,
113
 
                                                       guint         n_param_values,
114
 
                                                       const GValue *param_values,
115
 
                                                       gpointer      invocation_hint G_GNUC_UNUSED,
116
 
                                                       gpointer      marshal_data)
117
 
{
118
 
  typedef void (*GMarshalFunc_VOID__STRING_BOOLEAN_BOOLEAN) (gpointer     data1,
119
 
                                                             gpointer     arg_1,
120
 
                                                             gboolean     arg_2,
121
 
                                                             gboolean     arg_3,
122
 
                                                             gpointer     data2);
123
 
  register GMarshalFunc_VOID__STRING_BOOLEAN_BOOLEAN callback;
124
 
  register GCClosure *cc = (GCClosure*) closure;
125
 
  register gpointer data1, data2;
126
 
 
127
 
  g_return_if_fail (n_param_values == 4);
128
 
 
129
 
  if (G_CCLOSURE_SWAP_DATA (closure))
130
 
    {
131
 
      data1 = closure->data;
132
 
      data2 = g_value_peek_pointer (param_values + 0);
133
 
    }
134
 
  else
135
 
    {
136
 
      data1 = g_value_peek_pointer (param_values + 0);
137
 
      data2 = closure->data;
138
 
    }
139
 
  callback = (GMarshalFunc_VOID__STRING_BOOLEAN_BOOLEAN) (marshal_data ? marshal_data : cc->callback);
140
 
 
141
 
  callback (data1,
142
 
            g_marshal_value_peek_string (param_values + 1),
143
 
            g_marshal_value_peek_boolean (param_values + 2),
144
 
            g_marshal_value_peek_boolean (param_values + 3),
145
 
            data2);
146
 
}
147
 
 
148
 
/* BOOLEAN:BOXED,BOXED,BOOLEAN (./baconvideowidget-marshal.list:3) */
149
 
extern void baconvideowidget_marshal_BOOLEAN__BOXED_BOXED_BOOLEAN (GClosure     *closure,
150
 
                                                                   GValue       *return_value,
151
 
                                                                   guint         n_param_values,
152
 
                                                                   const GValue *param_values,
153
 
                                                                   gpointer      invocation_hint,
154
 
                                                                   gpointer      marshal_data);
155
 
void
156
 
baconvideowidget_marshal_BOOLEAN__BOXED_BOXED_BOOLEAN (GClosure     *closure,
157
 
                                                       GValue       *return_value G_GNUC_UNUSED,
158
 
                                                       guint         n_param_values,
159
 
                                                       const GValue *param_values,
160
 
                                                       gpointer      invocation_hint G_GNUC_UNUSED,
161
 
                                                       gpointer      marshal_data)
162
 
{
163
 
  typedef gboolean (*GMarshalFunc_BOOLEAN__BOXED_BOXED_BOOLEAN) (gpointer     data1,
164
 
                                                                 gpointer     arg_1,
165
 
                                                                 gpointer     arg_2,
166
 
                                                                 gboolean     arg_3,
167
 
                                                                 gpointer     data2);
168
 
  register GMarshalFunc_BOOLEAN__BOXED_BOXED_BOOLEAN callback;
169
 
  register GCClosure *cc = (GCClosure*) closure;
170
 
  register gpointer data1, data2;
171
 
  gboolean v_return;
172
 
 
173
 
  g_return_if_fail (return_value != NULL);
174
 
  g_return_if_fail (n_param_values == 4);
175
 
 
176
 
  if (G_CCLOSURE_SWAP_DATA (closure))
177
 
    {
178
 
      data1 = closure->data;
179
 
      data2 = g_value_peek_pointer (param_values + 0);
180
 
    }
181
 
  else
182
 
    {
183
 
      data1 = g_value_peek_pointer (param_values + 0);
184
 
      data2 = closure->data;
185
 
    }
186
 
  callback = (GMarshalFunc_BOOLEAN__BOXED_BOXED_BOOLEAN) (marshal_data ? marshal_data : cc->callback);
187
 
 
188
 
  v_return = callback (data1,
189
 
                       g_marshal_value_peek_boxed (param_values + 1),
190
 
                       g_marshal_value_peek_boxed (param_values + 2),
191
 
                       g_marshal_value_peek_boolean (param_values + 3),
192
 
                       data2);
193
 
 
194
 
  g_value_set_boolean (return_value, v_return);
195
 
}
196
 
 
197
 
G_END_DECLS
198
 
 
199
 
#endif /* __baconvideowidget_marshal_MARSHAL_H__ */
200