From 977e1bb11b690ff2892621685b726aa16d6e815b Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Thu, 31 May 2007 18:42:28 +0000 Subject: [PATCH] Revert last commit, asked by Magnus Olsen. svn path=/trunk/; revision=26953 --- reactos/include/psdk/winnt.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/reactos/include/psdk/winnt.h b/reactos/include/psdk/winnt.h index 2f9b9c2fefd..3b821de888d 100644 --- a/reactos/include/psdk/winnt.h +++ b/reactos/include/psdk/winnt.h @@ -54,7 +54,6 @@ extern "C" { #include #include #include -#include #ifndef RC_INVOKED #include @@ -103,12 +102,12 @@ typedef char CHAR; typedef short SHORT; #ifndef LONG_DEFINED #define LONG_DEFINED - typedef int32_t LONG; - typedef uint32_t ULONG,*PULONG; + typedef long LONG; + typedef unsigned long ULONG,*PULONG; #endif//LONG_DEFINED typedef char CCHAR, *PCCHAR; -typedef uint8_t UCHAR,*PUCHAR; -typedef uint16_t USHORT,*PUSHORT; +typedef unsigned char UCHAR,*PUCHAR; +typedef unsigned short USHORT,*PUSHORT; typedef char *PSZ; typedef void *PVOID,*LPVOID;