Add _g_io_win32_get_module to get the gio HMODULE
authorAlexander Larsson <alexl@redhat.com>
Wed, 18 Apr 2012 14:25:29 +0000 (16:25 +0200)
committerAlexander Larsson <alexl@redhat.com>
Fri, 20 Apr 2012 13:02:48 +0000 (15:02 +0200)
gio/giomodule-priv.h
gio/giomodule.c

index b25d305..c105007 100644 (file)
@@ -35,6 +35,10 @@ gpointer _g_io_module_get_default (const gchar         *extension_point,
                                   const gchar         *envvar,
                                   GIOModuleVerifyFunc  verify_func);
 
+#ifdef G_PLATFORM_WIN32
+void *_g_io_win32_get_module (void);
+#endif
+
 G_END_DECLS
 
 #endif /* __G_IO_MODULE_PRIV_H__ */
index 480f2f0..d8ce138 100644 (file)
@@ -795,6 +795,12 @@ DllMain (HINSTANCE hinstDLL,
   return TRUE;
 }
 
+void *
+_g_io_win32_get_module (void)
+{
+  return gio_dll;
+}
+
 #endif
 
 #undef GIO_MODULE_DIR