mirror of
https://github.com/open-goal/jak-project
synced 2026-07-10 15:14:15 -04:00
bde49ea079
* add discord rpc library * add discord rpc * add cutscene check * fix build (hopefully) * fix build * edit paths * Replace prebuilt discord-rpc lib with repo clone
9 lines
179 B
C++
Vendored
Generated
9 lines
179 B
C++
Vendored
Generated
#include <windows.h>
|
|
|
|
// outsmart GCC's missing-declarations warning
|
|
BOOL WINAPI DllMain(HMODULE, DWORD, LPVOID);
|
|
BOOL WINAPI DllMain(HMODULE, DWORD, LPVOID)
|
|
{
|
|
return TRUE;
|
|
}
|