StormByte C++ Library: System module 0.0.9999
StormByte-System is a StormByte library module for encapsulating different process handling over different operating system's complexities
Loading...
Searching...
No Matches
visibility.h
1#pragma once
2
3#include <StormByte/platform.h>
4
5#ifdef WINDOWS
6 #ifdef StormByte_System_EXPORTS
7 #define STORMBYTE_SYSTEM_PUBLIC __declspec(dllexport)
8 #else
9 #define STORMBYTE_SYSTEM_PUBLIC __declspec(dllimport)
10 #endif
11 #define STORMBYTE_SYSTEM_PRIVATE
12#else
13 #define STORMBYTE_SYSTEM_PUBLIC __attribute__ ((visibility ("default")))
14 #define STORMBYTE_SYSTEM_PRIVATE __attribute__ ((visibility ("hidden")))
15#endif