blob: 42f910004907831316afff0bc8b7886c8b0d9728 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
CustomCCode #ifdef WIN32
CustomCCode #ifdef _MSC_VER
CustomCCode /* This typedef is apparently needed for Microsoft compilers before VC8,
CustomCCode and on Windows CE */
CustomCCode #if (_MSC_VER < 1400) || defined(UNDER_CE)
CustomCCode #ifdef _WIN64
CustomCCode typedef long long intptr_t;
CustomCCode #else
CustomCCode typedef int intptr_t;
CustomCCode #endif
CustomCCode #endif
CustomCCode #else
CustomCCode #include <inttypes.h>
CustomCCode #endif
CustomCCode #else
CustomCCode #include <inttypes.h>
CustomCCode #endif
|