(root)/
glib-2.79.0/
gio/
tests/
resourceplugin.c
       1  /*
       2   * Ensure the g_io_module_*() symbols are exported
       3   * on all supported compilers without using config.h.
       4   * This must be done before including any GLib headers,
       5   * since GLIB_AVAILABLE_IN_ALL, which is used to mark the
       6   * g_io_module*() symbols, is defined to be _GLIB_EXTERN,
       7   * which must be overridden to export the symbols.
       8   */
       9  
      10  #include <gio/gio.h>
      11  
      12  void
      13  g_io_module_load (GIOModule *module)
      14  {
      15  }
      16  
      17  void
      18  g_io_module_unload (GIOModule   *module)
      19  {
      20  }
      21  
      22  char **
      23  g_io_module_query (void)
      24  {
      25    return NULL;
      26  }