StormByte C++ Library: Crypto module 1.0.0
StormByte-Crypto is a StormByte library module for handling cryptographic operations
Loading...
Searching...
No Matches
visibility.h
1#pragma once
2
3#include <StormByte/platform.h>
4
5#ifdef WINDOWS
6 #ifdef StormByte_Crypto_EXPORTS
7 #define STORMBYTE_CRYPTO_PUBLIC __declspec(dllexport)
8 #else
9 #define STORMBYTE_CRYPTO_PUBLIC __declspec(dllimport)
10 #endif
11 #define STORMBYTE_CRYPTO_PRIVATE
12#else
13 #define STORMBYTE_CRYPTO_PUBLIC __attribute__ ((visibility ("default")))
14 #define STORMBYTE_CRYPTO_PRIVATE __attribute__ ((visibility ("hidden")))
15#endif