include: Add remaining checks for ARM64.
This commit is contained in:
parent
e835f034fb
commit
5c8da80801
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue