Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
dc3253db
Commit
dc3253db
authored
Sep 28, 2018
by
uentity
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add macros for explicit symbol visibility
parent
5d6cda55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
libcaf_core/caf/config.hpp
libcaf_core/caf/config.hpp
+19
-0
No files found.
libcaf_core/caf/config.hpp
View file @
dc3253db
...
@@ -259,3 +259,22 @@ struct IUnknown;
...
@@ -259,3 +259,22 @@ struct IUnknown;
__FILE__, __LINE__, error); \
__FILE__, __LINE__, error); \
::abort(); \
::abort(); \
} while (false)
} while (false)
// Explicit symbol visibility macros.
#ifdef CAF_MSVC
# define CAF_API_EXPORT __declspec(dllexport)
# define CAF_API_IMPORT __declspec(dllimport)
#elif defined(CAF_CLANG) || defined(CAF_GCC)
# define CAF_API_EXPORT __attribute__ ((visibility("default")))
# define CAF_API_IMPORT
#else
# define CAF_API_EXPORT
# define CAF_API_IMPORT
#endif
#ifdef libcaf_core_shared_EXPORTS
# define CAF_API CAF_API_EXPORT
#else
# define CAF_API CAF_API_IMPORT
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment