1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/glib/tests/libmoduletestplugin_b.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,74 @@
1.4 +/* libgplugin_b.c - test plugin for testgmodule
1.5 + * Copyright (C) 1998 Tim Janik
1.6 + * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
1.7 + * This library is free software; you can redistribute it and/or
1.8 + * modify it under the terms of the GNU Lesser General Public
1.9 + * License as published by the Free Software Foundation; either
1.10 + * version 2 of the License, or (at your option) any later version.
1.11 + *
1.12 + * This library is distributed in the hope that it will be useful,
1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1.15 + * Lesser General Public License for more details.
1.16 + *
1.17 + * You should have received a copy of the GNU Lesser General Public
1.18 + * License along with this library; if not, write to the
1.19 + * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
1.20 + * Boston, MA 02111-1307, USA.
1.21 + */
1.22 +
1.23 +/*
1.24 + * Modified by the GLib Team and others 1997-2000. See the AUTHORS
1.25 + * file for a list of people on the GLib Team. See the ChangeLog
1.26 + * files for a list of changes. These files are distributed with
1.27 + * GLib at ftp://ftp.gtk.org/pub/gtk/.
1.28 + */
1.29 +
1.30 +#undef G_DISABLE_ASSERT
1.31 +#undef G_LOG_DOMAIN
1.32 +
1.33 +#include <gmodule.h>
1.34 +
1.35 +#ifdef __SYMBIAN32__
1.36 +G_MODULE_EXPORT gchar* gplugin_b_state = NULL;
1.37 +#else
1.38 +G_MODULE_EXPORT gchar* gplugin_b_state;
1.39 +#endif
1.40 +
1.41 +G_MODULE_EXPORT const gchar*
1.42 +g_module_check_init (GModule *module)
1.43 +{
1.44 + gplugin_b_state = "check-init";
1.45 +
1.46 + return NULL;
1.47 +}
1.48 +
1.49 +G_MODULE_EXPORT void
1.50 +g_module_unload (GModule *module)
1.51 +{
1.52 + gplugin_b_state = "unloaded";
1.53 +}
1.54 +
1.55 +G_MODULE_EXPORT void
1.56 +gplugin_b_func (void)
1.57 +{
1.58 + gplugin_b_state = "Hello world";
1.59 +}
1.60 +
1.61 +G_MODULE_EXPORT void
1.62 +gplugin_clash_func (void)
1.63 +{
1.64 + gplugin_b_state = "plugin clash";
1.65 +}
1.66 +
1.67 +G_MODULE_EXPORT void
1.68 +g_clash_func (void)
1.69 +{
1.70 + gplugin_b_state = "global clash";
1.71 +}
1.72 +
1.73 +G_MODULE_EXPORT void
1.74 +gplugin_say_boo_func (void)
1.75 +{
1.76 + gplugin_b_state = "BOOH";
1.77 +}