mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-12-02 05:54:18 +01:00
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;
|
||
|
}
|