mirror of
https://github.com/open-goal/jak-project.git
synced 2025-02-17 12:40:04 +00:00
![water111](/assets/img/avatar_default.png)
* begin generic merc * more generic stuff * generic dma generation not crashing, at least until high-speed-reject * c * unpacker for generic * starting to work * small fixes * more fixes * more progress * cleanup * fix tests * no custom imgui assert on windows
15 lines
519 B
C
15 lines
519 B
C
#pragma once
|
|
|
|
#include "third-party/discord-rpc/include/discord_rpc.h"
|
|
|
|
void init_discord_rpc();
|
|
void set_discord_rpc(int state);
|
|
const char* jak1_get_full_level_name(const char* level_name);
|
|
|
|
void handleDiscordReady(const DiscordUser* user);
|
|
void handleDiscordDisconnected(int errcode, const char* message);
|
|
void handleDiscordError(int errcode, const char* message);
|
|
void handleDiscordJoin(const char* secret);
|
|
void handleDiscordJoinRequest(const DiscordUser* request);
|
|
void handleDiscordSpectate(const char* secret);
|