wintrust: Remove unnecessary DllMain implementation.

This commit is contained in:
Alexandre Julliard 2014-05-15 14:37:25 +02:00
parent 693faf2a7d
commit 6eb922f1d4
1 changed files with 0 additions and 14 deletions

View File

@ -58,20 +58,6 @@ void WINAPI WINTRUST_Free(void *p)
HeapFree(GetProcessHeap(), 0, p);
}
/***********************************************************************
* DllMain (WINTRUST.@)
*/
BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
{
switch(reason)
{
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls( inst );
break;
}
return TRUE;
}
/***********************************************************************
* TrustIsCertificateSelfSigned (WINTRUST.@)
*/