universal-access: Re-add cc-marshal.[ch]
Sorry for the noise, that's the correct fix.
This commit is contained in:
parent
827459fef1
commit
38252af6cf
2 changed files with 56 additions and 0 deletions
41
panels/universal-access/cc-marshal.c
Normal file
41
panels/universal-access/cc-marshal.c
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
#include <glib.h>
|
||||||
|
#include <glib-object.h>
|
||||||
|
#include "cc-marshal.h"
|
||||||
|
|
||||||
|
/* VOID:STRING,POINTER (peditor-marshal.list:25) */
|
||||||
|
void
|
||||||
|
cc_marshal_VOID__STRING_POINTER (GClosure *closure,
|
||||||
|
GValue *return_value,
|
||||||
|
guint n_param_values,
|
||||||
|
const GValue *param_values,
|
||||||
|
gpointer invocation_hint,
|
||||||
|
gpointer marshal_data)
|
||||||
|
{
|
||||||
|
typedef void (*GMarshalFunc_VOID__STRING_POINTER) (gpointer data1,
|
||||||
|
gpointer arg_1,
|
||||||
|
gpointer arg_2,
|
||||||
|
gpointer data2);
|
||||||
|
register GMarshalFunc_VOID__STRING_POINTER callback;
|
||||||
|
register GCClosure *cc = (GCClosure*) closure;
|
||||||
|
register gpointer data1, data2;
|
||||||
|
|
||||||
|
g_return_if_fail (n_param_values == 3);
|
||||||
|
|
||||||
|
if (G_CCLOSURE_SWAP_DATA (closure))
|
||||||
|
{
|
||||||
|
data1 = closure->data;
|
||||||
|
data2 = g_value_peek_pointer (param_values + 0);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
data1 = g_value_peek_pointer (param_values + 0);
|
||||||
|
data2 = closure->data;
|
||||||
|
}
|
||||||
|
callback = (GMarshalFunc_VOID__STRING_POINTER) (marshal_data ? marshal_data : cc->callback);
|
||||||
|
|
||||||
|
callback (data1,
|
||||||
|
(char*) g_value_get_string (param_values + 1),
|
||||||
|
g_value_get_pointer (param_values + 2),
|
||||||
|
data2);
|
||||||
|
}
|
||||||
|
|
15
panels/universal-access/cc-marshal.h
Normal file
15
panels/universal-access/cc-marshal.h
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
|
||||||
|
#include <gobject/gmarshal.h>
|
||||||
|
|
||||||
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
/* VOID:STRING,POINTER (peditor-marshal.list:25) */
|
||||||
|
extern void cc_marshal_VOID__STRING_POINTER (GClosure *closure,
|
||||||
|
GValue *return_value,
|
||||||
|
guint n_param_values,
|
||||||
|
const GValue *param_values,
|
||||||
|
gpointer invocation_hint,
|
||||||
|
gpointer marshal_data);
|
||||||
|
|
||||||
|
G_END_DECLS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue