1998-08-09 10:32:18 +02:00
|
|
|
/* libgplugin_b.c - test plugin for testgmodule
|
|
|
|
* Copyright (C) 1998 Tim Janik
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 13:02:02 +02:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-08-09 10:32:18 +02:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 13:02:02 +02:00
|
|
|
* Lesser General Public License for more details.
|
1998-08-09 10:32:18 +02:00
|
|
|
*
|
2000-07-26 13:02:02 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-08-09 10:32:18 +02:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
1999-02-24 07:14:27 +01:00
|
|
|
|
|
|
|
/*
|
2000-07-26 13:02:02 +02:00
|
|
|
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:14:27 +01:00
|
|
|
* file for a list of people on the GLib Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
1998-08-09 10:32:18 +02:00
|
|
|
#include <gmodule.h>
|
|
|
|
|
1998-08-17 04:40:30 +02:00
|
|
|
G_MODULE_EXPORT const gchar*
|
1998-08-09 13:39:50 +02:00
|
|
|
g_module_check_init (GModule *module)
|
|
|
|
{
|
|
|
|
g_print ("GPluginB: check-init\n");
|
|
|
|
|
1998-08-17 04:40:30 +02:00
|
|
|
return NULL;
|
1998-08-09 13:39:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
G_MODULE_EXPORT void
|
1998-09-21 04:32:30 +02:00
|
|
|
g_module_unload (GModule *module)
|
1998-08-09 13:39:50 +02:00
|
|
|
{
|
1998-09-21 04:32:30 +02:00
|
|
|
g_print ("GPluginB: unloaded\n");
|
1998-08-09 13:39:50 +02:00
|
|
|
}
|
|
|
|
|
1998-08-09 10:32:18 +02:00
|
|
|
G_MODULE_EXPORT void
|
|
|
|
gplugin_b_func (void)
|
|
|
|
{
|
|
|
|
g_print ("GPluginB: Hello world\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
G_MODULE_EXPORT void
|
|
|
|
gplugin_clash_func (void)
|
|
|
|
{
|
|
|
|
g_print ("GPluginB: Hello plugin clash\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
G_MODULE_EXPORT void
|
|
|
|
g_clash_func (void)
|
|
|
|
{
|
|
|
|
g_print ("GPluginB: Hello global clash\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
G_MODULE_EXPORT void
|
|
|
|
gplugin_say_boo_func (void)
|
|
|
|
{
|
|
|
|
g_print ("GPluginB: BOOH!\n");
|
|
|
|
}
|