SmartEngine  1.6.0
Defines.h
1 // Copyright (C) Entropy Software LLC - All Rights Reserved
2 
3 #pragma once
4 
6 
7 #ifdef SMARTENGINE_WINDOWS
8 #define SMARTENGINE_EXPORT __declspec(dllexport)
9 #elif defined SMARTENGINE_LINUX
10 #define SMARTENGINE_EXPORT __attribute__((visibility("default")))
11 #else
12 #define SMARTENGINE_EXPORT
13 #endif
14 
15 #ifdef SMARTENGINE_WINDOWS
16 #define SMARTENGINE_CALLBACK __stdcall
17 #else
18 #define SMARTENGINE_CALLBACK
19 #endif
20 
21 namespace SmartEngine
22 {
23 
24 typedef long long int64;
25 typedef unsigned long long uint64;
26 typedef unsigned int uint32;
27 typedef unsigned char byte;
28 
29 }
30 
31 /// @endcond
SmartEngine
Definition: A2CTrainer.h:10