
Indentation fixed to 2 spaces per tab. Braces set to Stroustrup style. Lines reflow at 80 characters. One-line method bodies are on the same line as the signature. Space always after `//`. No indentation on preprocessor macros. Includes are sorted lexicographically. If you don't want to see this commit on blames, use the hidden whitespace option on GitHub, or use `-w` in git-blame.
29 lines
649 B
C
29 lines
649 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
|