include: Add remaining checks for ARM64.

oldstable
André Hentschel 2013-01-26 12:10:23 +01:00 committed by Alexandre Julliard
parent e835f034fb
commit 5c8da80801
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@
# error You cannot use both wine/port.h and msvcrt headers
#endif
#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)) && !defined(_WIN64)
#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__) || defined(__aarch64__)) && !defined(_WIN64)
#define _WIN64
#endif

View File

@ -37,7 +37,7 @@ extern "C" {
/* Calling conventions definitions */
#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)) && !defined(_WIN64)
#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__) || defined(__aarch64__)) && !defined(_WIN64)
#define _WIN64
#endif