mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-03 19:18:09 +00:00
6c655321e6
Signed-off-by: swurl <swurl@swurl.xyz>
9 lines
179 B
C++
9 lines
179 B
C++
#include <windows.h>
|
|
|
|
// outsmart GCC's missing-declarations warning
|
|
BOOL WINAPI DllMain(HMODULE, DWORD, LPVOID);
|
|
BOOL WINAPI DllMain(HMODULE, DWORD, LPVOID)
|
|
{
|
|
return TRUE;
|
|
}
|