From 0ea1ccb49ddad97a2783e9bb61adae132f7ac678 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 17 Oct 2009 19:19:22 +0000 Subject: [PATCH] disable ROS_LONG64 hack for amd64 svn path=/trunk/; revision=43538 --- reactos/include/psdk/winnt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/include/psdk/winnt.h b/reactos/include/psdk/winnt.h index 4d2714d4387..d2e7d0d0298 100644 --- a/reactos/include/psdk/winnt.h +++ b/reactos/include/psdk/winnt.h @@ -106,7 +106,7 @@ extern "C" { #endif typedef char CHAR; typedef short SHORT; -#ifndef __ROS_LONG64__ +#if !defined(__ROS_LONG64__) || defined(_M_AMD64) typedef long LONG; #else typedef int LONG; @@ -3278,8 +3278,8 @@ typedef union _SLIST_HEADER { ULONGLONG Alignment; struct { SLIST_ENTRY Next; - WORD Depth; - WORD Sequence; + USHORT Depth; + USHORT Sequence; } DUMMYSTRUCTNAME; } SLIST_HEADER, *PSLIST_HEADER; #endif