1
0
mirror of https://frontier.innolan.net/rainlance/c-ares.git synced 2025-10-05 13:59:30 +00:00

ares_win32_init: make LoadLibrary work when using UNICODE too

Closes #17
This commit is contained in:
Nicolas \"Pixel\" Noble
2014-06-21 02:45:05 +02:00
committed by Daniel Stenberg
parent 7e17c22b0f
commit 385582bd14

View File

@ -50,7 +50,7 @@ static int ares_win32_init(void)
#ifdef USE_WINSOCK
hnd_iphlpapi = 0;
hnd_iphlpapi = LoadLibrary("iphlpapi.dll");
hnd_iphlpapi = LoadLibraryW(L"iphlpapi.dll");
if (!hnd_iphlpapi)
return ARES_ELOADIPHLPAPI;
@ -78,7 +78,7 @@ static int ares_win32_init(void)
*/
hnd_advapi32 = 0;
hnd_advapi32 = LoadLibrary("advapi32.dll");
hnd_advapi32 = LoadLibraryW(L"advapi32.dll");
if (hnd_advapi32)
{
ares_fpSystemFunction036 = (fpSystemFunction036_t)