StormByte C++ Library: Network module
0.0.9999
StormByte-Network is a StormByte library module for handling and create network connections
Loading...
Searching...
No Matches
lib
public
StormByte
network
visibility.h
1
#pragma once
2
3
#include <StormByte/platform.h>
4
5
#ifdef WINDOWS
6
#ifdef StormByte_Network_EXPORTS
7
#define STORMBYTE_NETWORK_PUBLIC __declspec(dllexport)
8
#else
9
#define STORMBYTE_NETWORK_PUBLIC __declspec(dllimport)
10
#endif
11
#define STORMBYTE_NETWORK_PRIVATE
12
#else
13
#define STORMBYTE_NETWORK_PUBLIC __attribute__ ((visibility ("default")))
14
#define STORMBYTE_NETWORK_PRIVATE __attribute__ ((visibility ("hidden")))
15
#endif
Generated by
1.9.8