Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 440 of file oid.c.
Referenced by CryptGetDefaultOIDFunctionAddress().
00442 { 00443 BOOL ret = FALSE; 00444 00445 *lib = LoadLibraryW(dll); 00446 if (*lib) 00447 { 00448 *ppvFuncAddr = GetProcAddress(*lib, func); 00449 if (*ppvFuncAddr) 00450 ret = TRUE; 00451 else 00452 { 00453 FreeLibrary(*lib); 00454 *lib = NULL; 00455 } 00456 } 00457 return ret; 00458 }