64-bit windows

This commit is contained in:
rdb 2013-10-07 16:51:46 +00:00
parent acb97361db
commit 5463752f8e

View File

@ -19,6 +19,11 @@
#include "NxVersionNumber.h"
// Platform-specific defines
#if defined(_WIN64)
#define NX64 1
#elif defined(_WIN32)
#define NX32 1
#else
#if NATIVE_WORDSIZE == 64
#define NX64 1
#endif
@ -26,6 +31,7 @@
#if NATIVE_WORDSIZE == 32
#define NX32 1
#endif
#endif
#ifdef IS_LINUX
#define LINUX 1