Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
coreconfig.h
Go to the documentation of this file.
1 #pragma once
2 
3 #ifdef EXPORT
4  #ifdef _MSC_VER
5  #define CORE_EXPORT(x) __declspec(dllexport) x
6  #else
7  #define CORE_EXPORT(x) extern x
8  #endif
9 #else
10  #define CORE_EXPORT(x) x
11 #endif