Lines Matching defs:library
67 // with an embedded copy of the client stub instead of linking the system library version at runtime.
113 HMODULE library;
116 // Try and load the IP helper library dll
117 if ((library = LoadLibrary(TEXT("Iphlpapi")) ) != NULL )
122 if ((if_nametoindex_funcptr = (if_nametoindex_funcptr_t) GetProcAddress(library, "if_nametoindex")) != NULL )
127 FreeLibrary(library);
135 HMODULE library;
138 // Try and load the IP helper library dll
139 if ((library = LoadLibrary(TEXT("Iphlpapi")) ) != NULL )
144 if ((if_indextoname_funcptr = (if_indextoname_funcptr_t) GetProcAddress(library, "if_indextoname")) != NULL )
149 FreeLibrary(library);
1050 printf("Using embedded copy of dnssd_clientstub instead of system library\n");