mirror of
https://github.com/frida/tinycc
synced 2024-12-24 05:56:49 +03:00
10 lines
199 B
C
10 lines
199 B
C
|
//+---------------------------------------------------------------------------
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
BOOL WINAPI DllMain (HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
|