Lines Matching defs:library
54 // with an embedded copy of the client stub instead of linking the system library version at runtime.
100 HMODULE library;
103 // Try and load the IP helper library dll
104 if ((library = LoadLibrary(TEXT("Iphlpapi")) ) != NULL )
109 if ((if_nametoindex_funcptr = (if_nametoindex_funcptr_t) GetProcAddress(library, "if_nametoindex")) != NULL )
114 FreeLibrary(library);
122 HMODULE library;
125 // Try and load the IP helper library dll
126 if ((library = LoadLibrary(TEXT("Iphlpapi")) ) != NULL )
131 if ((if_indextoname_funcptr = (if_indextoname_funcptr_t) GetProcAddress(library, "if_indextoname")) != NULL )
136 FreeLibrary(library);
1450 printf("Using embedded copy of dnssd_clientstub instead of system library\n");