mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 22:25:42 +00: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;
|
||
|
}
|