diff options
author | Tor Lillqvist <tml@novell.com> | 2008-05-27 16:51:33 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2008-05-27 16:51:33 +0000 |
commit | 59596e699f61f21ccdeaed1b175f9ab3fed5e49a (patch) | |
tree | 5c239b30843751c2ac852913c174acf4e65c3134 /gdk-pixbuf/io-ras.c | |
parent | a4f8d6ccffa5d1d0c64cc197054ccde451cefc13 (diff) | |
download | gtk+-59596e699f61f21ccdeaed1b175f9ab3fed5e49a.tar.gz |
Use explicit G_MODULE_EXPORT decoration when building the loader in
2008-05-27 Tor Lillqvist <tml@novell.com>
* io-*.c: Use explicit G_MODULE_EXPORT decoration when building
the loader in question as a module.
* gdk-pixbuf-io.c: Enable included build of the icns and jasper
loaders.
svn path=/trunk/; revision=20192
Diffstat (limited to 'gdk-pixbuf/io-ras.c')
-rw-r--r-- | gdk-pixbuf/io-ras.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gdk-pixbuf/io-ras.c b/gdk-pixbuf/io-ras.c index 9b8a7d628f..655556edd9 100644 --- a/gdk-pixbuf/io-ras.c +++ b/gdk-pixbuf/io-ras.c @@ -512,21 +512,19 @@ gdk_pixbuf__ras_image_load_increment(gpointer data, } #ifndef INCLUDE_ras -#define MODULE_ENTRY(type,function) function +#define MODULE_ENTRY(function) G_MODULE_EXPORT void function #else -#define MODULE_ENTRY(type,function) _gdk_pixbuf__ ## type ## _ ## function +#define MODULE_ENTRY(function) void _gdk_pixbuf__ras_ ## function #endif -void -MODULE_ENTRY (ras, fill_vtable) (GdkPixbufModule *module) +MODULE_ENTRY (fill_vtable) (GdkPixbufModule *module) { module->begin_load = gdk_pixbuf__ras_image_begin_load; module->stop_load = gdk_pixbuf__ras_image_stop_load; module->load_increment = gdk_pixbuf__ras_image_load_increment; } -void -MODULE_ENTRY (ras, fill_info) (GdkPixbufFormat *info) +MODULE_ENTRY (fill_info) (GdkPixbufFormat *info) { static GdkPixbufModulePattern signature[] = { { "\x59\xa6\x6a\x95", NULL, 100 }, |