in src/framework/umdf/fxlib/version/framework.cpp [59:79]
WINAPI DllMain(
__in HINSTANCE hInstance,
__in DWORD dwReason,
__in LPVOID lpReserved
)
{
UNREFERENCED_PARAMETER(lpReserved);
hInstance;
if (DLL_PROCESS_ATTACH == dwReason)
{
DisableThreadLibraryCalls(hInstance);
}
else if (DLL_PROCESS_DETACH == dwReason)
{
DO_NOTHING();
}
return TRUE;
}