CruceGame  v0.4.0
 All Classes Files Functions Variables Enumerations Enumerator Macros Pages
platform.h
Go to the documentation of this file.
1 
6 #ifndef PLATFORM_H
7 #define PLATFORM_H
8 
9 #ifdef _MSC_VER
10 #ifdef LIBCRUCEGAME_EXPORTS
11 #define EXPORT __declspec(dllexport)
12 #else
13 #define EXPORT __declspec(dllimport)
14 #endif
15 #else
16 #define EXPORT
17 #endif
18 
19 
20 #endif
21