mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
[CRT]
- Do not skip calling DllMain on non-GCC builds svn path=/trunk/; revision=53465
This commit is contained in:
parent
7f089310e7
commit
3f6b691d08
1 changed files with 1 additions and 1 deletions
|
@ -199,8 +199,8 @@ __DllMainCRTStartup (HANDLE hDllHandle, DWORD dwReason, LPVOID lpreserved)
|
|||
goto i__leave;
|
||||
}
|
||||
}
|
||||
if (dwReason == DLL_PROCESS_ATTACH)
|
||||
#if defined(__GNUC__)
|
||||
if (dwReason == DLL_PROCESS_ATTACH)
|
||||
__main ();
|
||||
#endif
|
||||
retcode = DllMain(hDllHandle,dwReason,lpreserved);
|
||||
|
|
Loading…
Reference in a new issue