sl@0
|
1 |
/* libgplugin_b.c - test plugin for testgmodule
|
sl@0
|
2 |
* Copyright (C) 1998 Tim Janik
|
sl@0
|
3 |
* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
4 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
6 |
* License as published by the Free Software Foundation; either
|
sl@0
|
7 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
12 |
* Lesser General Public License for more details.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* You should have received a copy of the GNU Lesser General Public
|
sl@0
|
15 |
* License along with this library; if not, write to the
|
sl@0
|
16 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
sl@0
|
17 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
/*
|
sl@0
|
21 |
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
sl@0
|
22 |
* file for a list of people on the GLib Team. See the ChangeLog
|
sl@0
|
23 |
* files for a list of changes. These files are distributed with
|
sl@0
|
24 |
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
|
sl@0
|
27 |
#undef G_DISABLE_ASSERT
|
sl@0
|
28 |
#undef G_LOG_DOMAIN
|
sl@0
|
29 |
|
sl@0
|
30 |
#include <gmodule.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
#ifdef __SYMBIAN32__
|
sl@0
|
33 |
G_MODULE_EXPORT gchar* gplugin_b_state = NULL;
|
sl@0
|
34 |
#else
|
sl@0
|
35 |
G_MODULE_EXPORT gchar* gplugin_b_state;
|
sl@0
|
36 |
#endif
|
sl@0
|
37 |
|
sl@0
|
38 |
G_MODULE_EXPORT const gchar*
|
sl@0
|
39 |
g_module_check_init (GModule *module)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
gplugin_b_state = "check-init";
|
sl@0
|
42 |
|
sl@0
|
43 |
return NULL;
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
G_MODULE_EXPORT void
|
sl@0
|
47 |
g_module_unload (GModule *module)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
gplugin_b_state = "unloaded";
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
G_MODULE_EXPORT void
|
sl@0
|
53 |
gplugin_b_func (void)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
gplugin_b_state = "Hello world";
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
G_MODULE_EXPORT void
|
sl@0
|
59 |
gplugin_clash_func (void)
|
sl@0
|
60 |
{
|
sl@0
|
61 |
gplugin_b_state = "plugin clash";
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
G_MODULE_EXPORT void
|
sl@0
|
65 |
g_clash_func (void)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
gplugin_b_state = "global clash";
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
G_MODULE_EXPORT void
|
sl@0
|
71 |
gplugin_say_boo_func (void)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
gplugin_b_state = "BOOH";
|
sl@0
|
74 |
}
|