mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-05 04:40:06 +08:00
14 lines
333 B
C
14 lines
333 B
C
|
//+---------------------------------------------------------------------------
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
BOOL WINAPI DllMain (HANDLE hDll, DWORD dwReason, LPVOID lpReserved);
|
||
|
|
||
|
BOOL WINAPI _dllstart(HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
|
||
|
{
|
||
|
BOOL bRet;
|
||
|
bRet = DllMain (hDll, dwReason, lpReserved);
|
||
|
return bRet;
|
||
|
}
|
||
|
|