mirror of
https://github.com/yuzu-emu/discord-rpc.git
synced 2024-11-09 23:18:49 +00:00
eee5085e9b
* Update CMakeLists.txt * Update and rename src/discord_register.h to include/discord_register.h * Update CMakeLists.txt * Update discord_register_win.cpp * Update discord_register_linux.cpp
27 lines
602 B
C
27 lines
602 B
C
#pragma once
|
|
|
|
#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
|
|
# define DISCORD_EXPORT
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
DISCORD_EXPORT void Discord_Register(const char* applicationId, const char* command);
|
|
DISCORD_EXPORT void Discord_RegisterSteamGame(const char* applicationId, const char* steamId);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|