ntdll: Get rid of DllMain in the Unix library.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2020-07-01 10:36:59 +02:00
parent e6632e0412
commit 8885a51347
1 changed files with 0 additions and 7 deletions

View File

@ -1830,10 +1830,3 @@ void __wine_main( int argc, char *argv[], char *envp[] )
#endif
start_main_thread();
}
BOOL WINAPI DECLSPEC_HIDDEN DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
{
if (reason == DLL_PROCESS_ATTACH) LdrDisableThreadCalloutsForDll( inst );
return TRUE;
}