Replaced deprecated win32-compatibility function with undeprecated one.

Fixes #560442.
This commit is contained in:
Руслан Ижбулатов 2009-06-17 00:29:40 +04:00 committed by Tim-Philipp Müller
parent d280a3977e
commit 7ad8d2e54c

View file

@ -135,6 +135,10 @@
static gboolean gst_initialized = FALSE;
static gboolean gst_deinitialized = FALSE;
#ifdef G_OS_WIN32
static HMODULE gst_dll_handle = NULL;
#endif
#ifndef GST_DISABLE_REGISTRY
static GList *plugin_paths = NULL; /* for delayed processing in post_init */
#endif
@ -284,6 +288,16 @@ parse_debug_list (const gchar * list)
}
#endif
#ifdef G_OS_WIN32
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
if (fdwReason == DLL_PROCESS_ATTACH)
gst_dll_handle = (HMODULE) hinstDLL;
return TRUE;
}
#endif
/**
* gst_init_get_option_group:
*
@ -728,8 +742,8 @@ scan_and_update_registry (GstRegistry * default_registry,
char *base_dir;
char *dir;
base_dir = g_win32_get_package_installation_directory (NULL,
"libgstreamer-0.10-0.dll");
base_dir = g_win32_get_package_installation_directory_of_module (
gst_dll_handle);
dir = g_build_filename (base_dir, "lib", "gstreamer-0.10", NULL);
GST_DEBUG ("scanning DLL dir %s", dir);