Commit d67275fe authored by Austin English's avatar Austin English Committed by Alexandre Julliard

include: Define _WIN64 on sparc/powerpc64.

parent de8e11f5
......@@ -36,7 +36,7 @@ extern "C" {
* 64-bit.
*/
#if defined(__x86_64__) && !defined(_WIN64)
#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)) && !defined(_WIN64)
#define _WIN64
#endif
......
......@@ -29,7 +29,7 @@
# error You cannot use both wine/port.h and msvcrt headers
#endif
#if defined(__x86_64__) && !defined(_WIN64)
#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)) && !defined(_WIN64)
#define _WIN64
#endif
......
......@@ -37,7 +37,7 @@ extern "C" {
/* Calling conventions definitions */
#if defined(__x86_64__) && !defined(_WIN64)
#if (defined(__x86_64__) || defined(__powerpc64__) || defined(__sparc64__)) && !defined(_WIN64)
#define _WIN64
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment