mirror of
https://git.suyu.dev/suyu/discord-rpc.git
synced 2026-01-10 08:28:47 +01:00
8 lines
179 B
C++
8 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;
|
|
}
|