solidc
Robust collection of general-purpose cross-platform C libraries and data structures designed for rapid and safe development in C
Loading...
Searching...
No Matches
global.h
Go to the documentation of this file.
1
6#ifndef SOLIDC_GLOBAL_H
7#define SOLIDC_GLOBAL_H
8
9#if defined(_WIN32) || defined(__CYGWIN__)
10#ifdef SOLIDC_EXPORTS
11#define SOLIDC_API __declspec(dllexport)
12#else
13#define SOLIDC_API __declspec(dllimport)
14#endif
15#else
16#define SOLIDC_API __attribute__((visibility("default")))
17#endif
18
19#endif /* SOLIDC_GLOBAL_H */