libwallaby  v23
The wallaby standard library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
export.h
Go to the documentation of this file.
1 /*
2  * export.h
3  *
4  * Created on: Nov 12, 2015
5  * Author: Joshua Southerland
6  */
7 
8 #ifndef INCLUDE_WALLABY_EXPORT_H_
9 #define INCLUDE_WALLABY_EXPORT_H_
10 
11 #ifdef WIN32
12 #define EXPORT_SYM __declspec(dllexport)
13 #else
14 #define EXPORT_SYM
15 #endif
16 
17 
18 #endif /* INCLUDE_WALLABY_EXPORT_H_ */