-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Warning: debug build does not currently work
- Loading branch information
Showing
19 changed files
with
1,950 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#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 |
Oops, something went wrong.