TDME2 1.9.121
tdme.h
Go to the documentation of this file.
1#pragma once
2
3#include <climits>
4#include <cstdint>
5
6#if defined(TDME2_DLL_EXPORT)
7 #define STATIC_DLL_IMPEXT __declspec(dllexport)
8#elif defined(TDME2_DLL_IMPORT)
9 #define STATIC_DLL_IMPEXT __declspec(dllimport)
10#else
11 #define STATIC_DLL_IMPEXT
12#endif
13
14#if INTPTR_MAX == INT64_MAX
15 #define CPU_64BIT
16#elif INTPTR_MAX == INT32_MAX
17 #define CPU_32BIT
18#else
19 #error "Unknown register width or missing size macros"
20#endif