mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
309 B
11 lines
309 B
9 years ago
|
/* Windows, both 32-bit and 64-bit */
|
||
9 years ago
|
#if defined(_WIN32) || defined(WIN32) || defined(_WIN64) || defined(WIN64) || \
|
||
|
defined(__WIN32__) || defined(__TOS_WIN__) || defined(__WINDOWS__)
|
||
|
#define DUK_F_WINDOWS
|
||
9 years ago
|
#if defined(_WIN64) || defined(WIN64)
|
||
|
#define DUK_F_WIN64
|
||
|
#else
|
||
|
#define DUK_F_WIN32
|
||
|
#endif
|
||
9 years ago
|
#endif
|