2 * gmodule.c: dl* functions, glib style
5 * Gonzalo Paniagua Javier (gonzalo@novell.com)
6 * Jonathan Chambers (joncham@gmail.com)
7 * Robert Jordan (robertj@gmx.net)
9 * (C) 2006 Novell, Inc.
10 * (C) 2006 Jonathan Chambers
12 * Permission is hereby granted, free of charge, to any person obtaining
13 * a copy of this software and associated documentation files (the
14 * "Software"), to deal in the Software without restriction, including
15 * without limitation the rights to use, copy, modify, merge, publish,
16 * distribute, sublicense, and/or sell copies of the Software, and to
17 * permit persons to whom the Software is furnished to do so, subject to
18 * the following conditions:
20 * The above copyright notice and this permission notice shall be
21 * included in all copies or substantial portions of the Software.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 #define LIBSUFFIX ".dll"
45 g_module_open (const gchar
*file
, GModuleFlags flags
)
48 module
= g_malloc (sizeof (GModule
));
54 file16
= u8to16(file
);
55 module
->main_module
= FALSE
;
56 module
->handle
= LoadLibrary (file16
);
58 if (!module
->handle
) {
64 module
->main_module
= TRUE
;
65 module
->handle
= GetModuleHandle (NULL
);
72 w32_find_symbol (const gchar
*symbol_name
)
75 DWORD buffer_size
= sizeof (HMODULE
) * 1024;
78 modules
= (HMODULE
*) g_malloc (buffer_size
);
83 if (!EnumProcessModules (GetCurrentProcess (), modules
,
84 buffer_size
, &needed
)) {
89 /* check whether the supplied buffer was too small, realloc, retry */
90 if (needed
> buffer_size
) {
94 modules
= (HMODULE
*) g_malloc (buffer_size
);
99 if (!EnumProcessModules (GetCurrentProcess (), modules
,
100 buffer_size
, &needed
)) {
106 for (i
= 0; i
< needed
/ sizeof (HANDLE
); i
++) {
107 gpointer proc
= (gpointer
)(intptr_t)GetProcAddress (modules
[i
], symbol_name
);
119 g_module_symbol (GModule
*module
, const gchar
*symbol_name
, gpointer
*symbol
)
121 if (module
== NULL
|| symbol_name
== NULL
|| symbol
== NULL
)
124 if (module
->main_module
) {
125 *symbol
= (gpointer
)(intptr_t)GetProcAddress (module
->handle
, symbol_name
);
129 *symbol
= w32_find_symbol (symbol_name
);
130 return *symbol
!= NULL
;
132 *symbol
= (gpointer
)(intptr_t)GetProcAddress (module
->handle
, symbol_name
);
133 return *symbol
!= NULL
;
138 g_module_error (void)
142 DWORD code
= GetLastError ();
144 FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM
| FORMAT_MESSAGE_ALLOCATE_BUFFER
, NULL
,
145 code
, MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
), buf
, 0, NULL
);
154 g_module_close (GModule
*module
)
159 if (module
== NULL
|| module
->handle
== NULL
)
162 handle
= module
->handle
;
163 main_module
= module
->main_module
;
164 module
->handle
= NULL
;
166 return (main_module
? 1 : (0 == FreeLibrary (handle
)));
170 g_module_build_path (const gchar
*directory
, const gchar
*module_name
)
172 char *lib_prefix
= "";
174 if (module_name
== NULL
)
177 if (strncmp (module_name
, "lib", 3) != 0)
178 lib_prefix
= LIBPREFIX
;
180 if (directory
&& *directory
){
182 return g_strdup_printf ("%s/%s%s" LIBSUFFIX
, directory
, lib_prefix
, module_name
);
184 return g_strdup_printf ("%s%s" LIBSUFFIX
, lib_prefix
, module_name
);