include: Define _WIN64 on sparc/powerpc64.

oldstable
Austin English 2011-11-07 13:51:48 -06:00 committed by Alexandre Julliard
parent de8e11f5d8
commit d67275fed8
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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