mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-05 04:40:06 +08: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;
|
||
|
}
|
||
|
|