mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 19:06:15 +01:00
Add _g_io_win32_get_module to get the gio HMODULE
This commit is contained in:
parent
74214e2997
commit
bd148e127a
@ -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__ */
|
||||
|
@ -795,6 +795,12 @@ DllMain (HINSTANCE hinstDLL,
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void *
|
||||
_g_io_win32_get_module (void)
|
||||
{
|
||||
return gio_dll;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#undef GIO_MODULE_DIR
|
||||
|
Loading…
Reference in New Issue
Block a user