mirror of
https://github.com/frida/tinycc
synced 2024-12-24 14:06:48 +03: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;
|
||
|
}
|
||
|
|