- 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
This commit is contained in:
ReactOS Portable Systems Group 2009-10-15 04:34:47 +00:00
parent d2b61cb87e
commit 649c4322fc

View file

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