From 649c4322fca7da2f0101822fe9bbeae61b21de18 Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Thu, 15 Oct 2009 04:34:47 +0000 Subject: [PATCH] - unix is one of many platforms that use LP64, so instead of defining every single possible OS which uses LP64, how about we define the *only* OS that uses LLP64: Win64. - Fixes building on BSD and Solaris. svn path=/trunk/; revision=43474 --- reactos/tools/rsym/rsym.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/tools/rsym/rsym.h b/reactos/tools/rsym/rsym.h index 82261facec3..cae80e7c69a 100644 --- a/reactos/tools/rsym/rsym.h +++ b/reactos/tools/rsym/rsym.h @@ -45,7 +45,7 @@ typedef unsigned char UCHAR; typedef unsigned short WORD; typedef unsigned short USHORT; typedef unsigned long long ULONGLONG; -#if defined(__x86_64__) && defined(unix) +#if defined(__x86_64__) && !defined(_WIN64) typedef signed int LONG; typedef unsigned int ULONG; typedef unsigned int DWORD; @@ -57,7 +57,7 @@ typedef unsigned long DWORD; #if defined(_WIN64) typedef unsigned __int64 ULONG_PTR; #else -#if defined(__x86_64__) && defined(unix) +#if defined(__x86_64__) && !defined(_WIN64) typedef unsigned int ULONG_PTR; #else typedef unsigned long ULONG_PTR;