discord-rpc/include/discord-rpc.h

84 lines
2.5 KiB
C
Raw Normal View History

2017-06-23 16:04:36 -07:00
#pragma once
2017-06-29 09:38:07 -07:00
#include <stdint.h>
2017-06-23 16:04:36 -07:00
2017-07-31 15:58:39 -07:00
// clang-format off
#if defined(DISCORD_DYNAMIC_LIB)
# if defined(_WIN32)
# if defined(DISCORD_BUILDING_SDK)
# define DISCORD_EXPORT __declspec(dllexport)
# else
# define DISCORD_EXPORT __declspec(dllimport)
# endif
# else
# define DISCORD_EXPORT __attribute__((visibility("default")))
# endif
#else
2017-10-12 16:08:08 -07:00
# define DISCORD_EXPORT
2017-07-31 15:58:39 -07:00
#endif
// clang-format on
2017-07-25 09:27:48 -07:00
#ifdef __cplusplus
extern "C" {
#endif
2017-07-20 13:22:11 -07:00
typedef struct DiscordRichPresence {
2017-07-31 15:58:39 -07:00
const char* state; /* max 128 bytes */
2017-07-28 16:06:46 -07:00
const char* details; /* max 128 bytes */
2017-06-29 09:38:07 -07:00
int64_t startTimestamp;
int64_t endTimestamp;
2017-07-31 15:58:39 -07:00
const char* largeImageKey; /* max 32 bytes */
2017-07-28 16:06:46 -07:00
const char* largeImageText; /* max 128 bytes */
2017-07-31 15:58:39 -07:00
const char* smallImageKey; /* max 32 bytes */
2017-07-28 16:06:46 -07:00
const char* smallImageText; /* max 128 bytes */
2017-07-31 15:58:39 -07:00
const char* partyId; /* max 128 bytes */
2017-06-29 08:58:38 -07:00
int partySize;
int partyMax;
2017-07-31 15:58:39 -07:00
const char* matchSecret; /* max 128 bytes */
const char* joinSecret; /* max 128 bytes */
2017-07-28 16:06:46 -07:00
const char* spectateSecret; /* max 128 bytes */
int8_t instance;
} DiscordRichPresence;
2017-06-23 16:04:36 -07:00
typedef struct DiscordJoinRequest {
2017-11-02 11:59:45 -07:00
const char* userId;
const char* username;
const char* avatar;
} DiscordJoinRequest;
2017-07-20 13:22:11 -07:00
typedef struct DiscordEventHandlers {
2017-06-23 16:04:36 -07:00
void (*ready)();
void (*disconnected)(int errorCode, const char* message);
2017-07-24 14:58:53 -07:00
void (*errored)(int errorCode, const char* message);
2017-06-23 16:04:36 -07:00
void (*joinGame)(const char* joinSecret);
void (*spectateGame)(const char* spectateSecret);
void (*joinRequest)(const DiscordJoinRequest* request);
} DiscordEventHandlers;
2017-06-23 16:04:36 -07:00
#define DISCORD_REPLY_NO 0
#define DISCORD_REPLY_YES 1
#define DISCORD_REPLY_IGNORE 2
2017-07-31 15:58:39 -07:00
DISCORD_EXPORT void Discord_Initialize(const char* applicationId,
DiscordEventHandlers* handlers,
int autoRegister,
const char* optionalSteamId);
2017-10-12 16:08:08 -07:00
DISCORD_EXPORT void Discord_Shutdown(void);
2017-06-29 08:58:38 -07:00
2017-07-07 09:41:20 -07:00
/* checks for incoming messages, dispatches callbacks */
2017-10-12 16:08:08 -07:00
DISCORD_EXPORT void Discord_RunCallbacks(void);
2017-07-18 09:47:33 -07:00
/* If you disable the lib starting its own io thread, you'll need to call this from your own */
#ifdef DISCORD_DISABLE_IO_THREAD
2017-10-12 16:08:08 -07:00
DISCORD_EXPORT void Discord_UpdateConnection(void);
2017-07-18 09:47:33 -07:00
#endif
2017-07-07 09:41:20 -07:00
2017-07-31 15:58:39 -07:00
DISCORD_EXPORT void Discord_UpdatePresence(const DiscordRichPresence* presence);
2017-07-20 15:59:15 -07:00
DISCORD_EXPORT void Discord_Respond(const char* userid, /* DISCORD_REPLY_ */ int reply);
2017-07-25 09:27:48 -07:00
#ifdef __cplusplus
} /* extern "C" */
#endif