fix cmopiler warnings. check (de)initialization code.

This commit is contained in:
Tim Janik
1998-08-09 11:39:50 +00:00
parent 6050cbef0a
commit 1718cd8c8d
5 changed files with 71 additions and 20 deletions

View File

@@ -18,6 +18,20 @@
*/
#include <gmodule.h>
G_MODULE_EXPORT gboolean
g_module_check_init (GModule *module)
{
g_print ("GPluginB: check-init\n");
return 0;
}
G_MODULE_EXPORT void
g_module_de_init (GModule *module)
{
g_print ("GPluginB: de-init\n");
}
G_MODULE_EXPORT void
gplugin_b_func (void)
{