Lines Matching refs:library
29 HMODULE library;
34 // Try and load the IP helper library dll
35 if ((library = LoadLibrary(TEXT("Iphlpapi")) ) != NULL )
40 if ((if_nametoindex_funcptr = (if_nametoindex_funcptr_t) GetProcAddress(library, "if_nametoindex")) != NULL )
45 FreeLibrary(library);
55 HMODULE library;
61 // Try and load the IP helper library dll
62 if ((library = LoadLibrary(TEXT("Iphlpapi")) ) != NULL )
67 if ((if_indextoname_funcptr = (if_indextoname_funcptr_t) GetProcAddress(library, "if_indextoname")) != NULL )
72 FreeLibrary(library);