aboutsummaryrefslogtreecommitdiff
path: root/ares/ares_library_init.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-11-11 08:56:46 +0000
committerYang Tse <yangsita@gmail.com>2009-11-11 08:56:46 +0000
commit5d786d0e9795f6a210645bd75717d3ef1849e5ff (patch)
tree0cd84347575d2f02fab95133ee26a769b3338730 /ares/ares_library_init.c
parent5f77eea408cde7975042deb285cf80be1691f34f (diff)
Renamed fpGetNetworkParams and fpSystemFunction036 to avoid namespace pollution with static library
Diffstat (limited to 'ares/ares_library_init.c')
-rw-r--r--ares/ares_library_init.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ares/ares_library_init.c b/ares/ares_library_init.c
index 72a6ac9bc..aac34eaf4 100644
--- a/ares/ares_library_init.c
+++ b/ares/ares_library_init.c
@@ -25,8 +25,8 @@
/* library-private global and unique instance vars */
#ifdef USE_WINSOCK
-fpGetNetworkParams_t fpGetNetworkParams = ZERO_NULL;
-fpSystemFunction036_t fpSystemFunction036 = ZERO_NULL;
+fpGetNetworkParams_t ares_fpGetNetworkParams = ZERO_NULL;
+fpSystemFunction036_t ares_fpSystemFunction036 = ZERO_NULL;
#endif
/* library-private global vars with source visibility restricted to this file */
@@ -49,9 +49,9 @@ static int ares_win32_init(void)
if (!hnd_iphlpapi)
return ARES_ELOADIPHLPAPI;
- fpGetNetworkParams = (fpGetNetworkParams_t)
+ ares_fpGetNetworkParams = (fpGetNetworkParams_t)
GetProcAddress(hnd_iphlpapi, "GetNetworkParams");
- if (!fpGetNetworkParams)
+ if (!ares_fpGetNetworkParams)
{
FreeLibrary(hnd_iphlpapi);
return ARES_EADDRGETNETWORKPARAMS;
@@ -67,7 +67,7 @@ static int ares_win32_init(void)
hnd_advapi32 = LoadLibrary("advapi32.dll");
if (hnd_advapi32)
{
- fpSystemFunction036 = (fpSystemFunction036_t)
+ ares_fpSystemFunction036 = (fpSystemFunction036_t)
GetProcAddress(hnd_advapi32, "SystemFunction036");
}