Udipe 1.0
Solving the riddle of high-throughput UDP
Loading...
Searching...
No Matches
visibility.h
Go to the documentation of this file.
1#pragma once
2
18
19
28#ifdef __GNUC__
29 #define UDIPE_PUBLIC __attribute__((visibility("default")))
30#elif defined(_MSC_VER)
31 #ifdef BUILDING_UDIPE
32 #define UDIPE_PUBLIC __declspec(dllexport)
33 #else
34 #define UDIPE_PUBLIC __declspec(dllimport)
35 #endif
36#else
37 #define UDIPE_PUBLIC
38#endif