GLIB-GENMARSHAL(1) | User Commands | GLIB-GENMARSHAL(1) |
NAME
glib-genmarshal - C code marshaller generation utility for GLib closuresSYNOPSIS
glib-genmarshal [OPTION...] [FILE...]
DESCRIPTION
glib-genmarshal is a small utility that generates C code marshallers for callback functions of the GClosure mechanism in the GObject sublibrary of GLib. The marshaller functions have a standard signature, they get passed in the invoking closure, an array of value structures holding the callback function parameters and a value structure for the return value of the callback. The marshaller is then responsible to call the respective C code function of the closure with all the parameters on the stack and to collect its return value.Marshaller list format
The marshaller lists are processed line by line, a line can contain a comment in the form ofRTYPE:PTYPE
RTYPE:PTYPE,PTYPE
RTYPE:PTYPE,PTYPE,PTYPE
Parameter types
Currently, the following types are supported:
indicates no return type, or no extra parameters. If VOID is used as the parameter list, no additional parameters may be present.
for boolean types (gboolean)
for signed char types (gchar)
for unsigned char types (guchar)
for signed integer types (gint)
for unsigned integer types (guint)
for signed long integer types (glong)
for unsigned long integer types (gulong)
for signed 64bit integer types (gint64)
for unsigned 64bit integer types (guint64)
for enumeration types (gint)
for flag enumeration types (guint)
for single-precision float types (gfloat)
for double-precision float types (gdouble)
for string types (gchar*)
for boxed (anonymous but reference counted) types (GBoxed*)
for GParamSpec or derived types (GParamSpec*)
for anonymous pointer types (gpointer)
for GObject or derived types (GObject*)
for GVariant types (GVariant*)
deprecated alias for VOID
deprecated alias for BOOLEAN
OPTIONS
--header
Generate header file contents of the marshallers.
Generate C code file contents of the marshallers.
Specify marshaller prefix. The default prefix is `g_cclosure_marshal'.
Skip source location remarks in generated comments.
Use the standard marshallers of the GObject library, and include gmarshal.h in generated header files.
Do not use the standard marshallers of the GObject library, and skip gmarshal.h include directive in generated header files.
Mark generated functions as internal, using G_GNUC_INTERNAL.
Generate valist marshallers, for use with g_signal_set_va_marshaller().
Print version information.
Make warnings fatal, that is, exit immediately once a warning occurs.
Print brief help and exit.
Print version and exit.
EXAMPLE
To generate marshallers for the following callback functions:void foo (gpointer data1,
gpointer data2);
void bar (gpointer data1,
gint param1,
gpointer data2);
gfloat baz (gpointer data1,
gboolean param1,
guchar param2,
gpointer data2);
VOID:VOID
VOID:INT
FLOAT:BOOLEAN,UCHAR
glib-genmarshal --header marshaller.list > marshaller.h
glib-genmarshal --body marshaller.list > marshaller.c
g_cclosure_user_marshal_VOID__VOID(),
g_cclosure_user_marshal_VOID__INT(),
g_cclosure_user_marshal_FLOAT__BOOLEAN_UCHAR().
GClosure *cc_foo, *cc_bar, *cc_baz;
cc_foo = g_cclosure_new (NULL, foo, NULL);
g_closure_set_marshal (cc_foo, g_cclosure_user_marshal_VOID__VOID);
cc_bar = g_cclosure_new (NULL, bar, NULL);
g_closure_set_marshal (cc_bar, g_cclosure_user_marshal_VOID__INT);
cc_baz = g_cclosure_new (NULL, baz, NULL);
g_closure_set_marshal (cc_baz, g_cclosure_user_marshal_FLOAT__BOOLEAN_UCHAR);
SEE ALSO
glib-mkenums(1)GObject |