mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
GetProcAddressA is available only on WinCE
As Roumen pointed out "After recent commits I count not link build for mingw* host as GetProcAddressA is missing." Looking around a bit it seems you are right: http://voidnish.wordpress.com/2005/06/14/getprocaddress-in-unicode-builds/ except it was introduced in Windows CE http://msdn.microsoft.com/en-us/library/ms885634.aspx
This commit is contained in:
parent
ec4fc529b3
commit
dfc0aa0a6a
@ -334,7 +334,14 @@ xmlModulePlatformClose(void *handle)
|
||||
static int
|
||||
xmlModulePlatformSymbol(void *handle, const char *name, void **symbol)
|
||||
{
|
||||
#ifdef _WIN32_WCE
|
||||
/*
|
||||
* GetProcAddressA seems only available on WinCE
|
||||
*/
|
||||
*symbol = GetProcAddressA(handle, name);
|
||||
#else
|
||||
*symbol = GetProcAddress(handle, name);
|
||||
#endif
|
||||
return (NULL == *symbol) ? -1 : 0;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user