41 lines
828 B
C++
41 lines
828 B
C++
#pragma once
|
|
|
|
/*
|
|
* Discord Rich Presence Class
|
|
* Handles connection with discord
|
|
*/
|
|
class RPC
|
|
{
|
|
private:
|
|
struct DiscordRichPresence
|
|
{
|
|
const char* state;
|
|
const char* details;
|
|
long long startTimestamp;
|
|
long long endTimestamp;
|
|
const char* largeImageKey;
|
|
const char* largeImageText;
|
|
const char* smallImageKey;
|
|
const char* smallImageText;
|
|
const char* partyId;
|
|
int partySize;
|
|
int partyMax;
|
|
const char* matchSecret;
|
|
const char* joinSecret;
|
|
const char* spectateSecret;
|
|
char instance;
|
|
};
|
|
|
|
static inline FARPROC f_Init, f_ShutDown, f_Update;
|
|
static inline DiscordRichPresence drpc;
|
|
static inline HMODULE hDll = NULL;
|
|
static inline bool bInit;
|
|
|
|
public:
|
|
RPC() = delete;
|
|
RPC(RPC&) = delete;
|
|
|
|
static void Init();
|
|
static void Process();
|
|
static void Shutdown();
|
|
}; |