xmscore  1.0
environment.h
Go to the documentation of this file.
1 #pragma once
2 //------------------------------------------------------------------------------
8 //------------------------------------------------------------------------------
9 
10 // Check windows
11 #if _WIN32 || _WIN64
12 #if _WIN64
13 #define ENV64BIT
14 #else
15 #define ENV32BIT
16 #endif
17 #endif
18 
19 // Check GCC
20 #if __GNUC__
21 #if __x86_64__ || __ppc64__
22 #define ENV64BIT
23 #else
24 #define ENV32BIT
25 #endif
26 #endif