-
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.
- Loading branch information
Showing
9 changed files
with
54 additions
and
12 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
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,24 @@ | ||
#pragma once | ||
|
||
#if defined _WIN32 || defined __CYGWIN__ | ||
# ifdef __GNUC__ | ||
# define MCAP_EXPORT __attribute__((dllexport)) | ||
# define MCAP_IMPORT __attribute__((dllimport)) | ||
# else | ||
# define MCAP_EXPORT __declspec(dllexport) | ||
# define MCAP_IMPORT __declspec(dllimport) | ||
# endif | ||
# ifdef MCAP_IMPLEMENTATION | ||
# define MCAP_PUBLIC MCAP_EXPORT | ||
# else | ||
# define MCAP_PUBLIC MCAP_IMPORT | ||
# endif | ||
#else | ||
# define MCAP_EXPORT __attribute__((visibility("hidden"))) | ||
# define MCAP_IMPORT | ||
# if __GNUC__ >= 4 | ||
# define MCAP_PUBLIC __attribute__((visibility("hidden"))) | ||
# else | ||
# define MCAP_PUBLIC | ||
# endif | ||
#endif |
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