os/ossrv/glib/tests/libmoduletestplugin_a.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* libgplugin_a.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
#include	<stdlib.h>
sl@0
    32
sl@0
    33
#ifdef __SYMBIAN32__
sl@0
    34
G_MODULE_EXPORT gchar* gplugin_a_state = NULL;
sl@0
    35
#else
sl@0
    36
G_MODULE_EXPORT gchar* gplugin_a_state;
sl@0
    37
#endif
sl@0
    38
sl@0
    39
G_MODULE_EXPORT void
sl@0
    40
gplugin_a_func (void)
sl@0
    41
{
sl@0
    42
  gplugin_a_state = "Hello world";
sl@0
    43
}
sl@0
    44
sl@0
    45
G_MODULE_EXPORT void
sl@0
    46
gplugin_clash_func (void)
sl@0
    47
{
sl@0
    48
  gplugin_a_state = "plugin clash";
sl@0
    49
}
sl@0
    50
sl@0
    51
G_MODULE_EXPORT void
sl@0
    52
g_clash_func (void)
sl@0
    53
{
sl@0
    54
  gplugin_a_state = "global clash";
sl@0
    55
}
sl@0
    56
sl@0
    57
G_MODULE_EXPORT void
sl@0
    58
gplugin_say_boo_func (void)
sl@0
    59
{
sl@0
    60
  gplugin_a_state = "BOOH";
sl@0
    61
}
sl@0
    62
sl@0
    63
G_MODULE_EXPORT void
sl@0
    64
gplugin_a_module_func (GModule *module)
sl@0
    65
{
sl@0
    66
  void *f = NULL;
sl@0
    67
sl@0
    68
  if (!g_module_symbol (module, "gplugin_say_boo_func", &f ))
sl@0
    69
    {
sl@0
    70
      g_print ("error: %s\n", g_module_error ());
sl@0
    71
      exit (1);
sl@0
    72
    }
sl@0
    73
sl@0
    74
  ((void(*)(void)) f) ();
sl@0
    75
}