search for: g_type_register_stat

Displaying 3 results from an estimated 3 matches for "g_type_register_stat".

Did you mean: g_type_register_static
2010 Mar 16
1
[PATCH] Non-working support for GObject Introspection.
Read the README file at the top of this patch first. Problems I see with GObject Introspection: (1) Requires that your code uses GObject; obvious in hindsight given the name. In this case, it seems that we'd have to "register" the guestfs_h structure with GObject (whatever that means). (2) Cannot convert C error codes into exceptions automatically. So all your high level code
2019 Jul 11
5
[p2v PATCH 0/4] More imports and fixes
See individual patches for details. Pino Toscano (4): Add valgrind suppression file podwrapper: the tools here start with p2v Import some internal documentation podwrapper: adapt footer to p2v .gitignore | 6 + Makefile.am | 4 +- configure.ac | 1 + docs/Makefile.am | 65 ++++++++ docs/p2v-building.pod | 259
2008 Jan 21
0
70 commits - configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_socket.c libswfdec-gtk/swfdec_gtk_socket.h libswfdec-gtk/swfdec_playback_alsa.c
...= 0; - - if (!loader_target_type) { - static const GTypeInfo loader_target_info = { - sizeof (SwfdecLoaderTargetInterface), - swfdec_loader_target_base_init, - NULL, - NULL, - NULL, - NULL, - 0, - 0, - NULL, - }; - - loader_target_type = g_type_register_static (G_TYPE_INTERFACE, - "SwfdecLoaderTarget", &loader_target_info, 0); - g_type_interface_add_prerequisite (loader_target_type, G_TYPE_OBJECT); - } - - return loader_target_type; -} - -SwfdecPlayer * -swfdec_loader_target_get_player (SwfdecLoaderTarget *target) -{ - Swfd...