-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jonathan Allen
committed
Aug 11, 2018
1 parent
8e815db
commit aa3a74c
Showing
15 changed files
with
123 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/** Define macros. | ||
*/ | ||
|
||
#ifdef COMPILING | ||
|
||
#ifdef _MSC_VER | ||
#define EXPORT __declspec(dllexport) | ||
#elif __GNUC__ | ||
#define EXPORT __attribute__((visibility("default"))) | ||
#else | ||
#define EXPORT | ||
#endif | ||
|
||
#else | ||
|
||
#ifdef _MSC_VER | ||
#define EXPORT __declspec(dllimport) | ||
#else | ||
#define EXPORT | ||
#endif | ||
|
||
#endif | ||
|
||
#if defined(_MSC_VER) | ||
#define DEPRECATED __declspec(deprecated) | ||
#elif defined(__GNUC__) | ||
#define DEPRECATED __attribute__((deprecated)) | ||
#else | ||
#define DEPRECATED | ||
#endif |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
/** Undefine macros. | ||
*/ | ||
#undef COMPILING | ||
#undef EXPORT | ||
#undef DEPRECATED |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.