Author: fireball
Date: Thu May 31 22:42:28 2007
New Revision: 26953
URL:
http://svn.reactos.org/svn/reactos?rev=26953&view=rev
Log:
Revert last commit, asked by Magnus Olsen.
Modified:
trunk/reactos/include/psdk/winnt.h
Modified: trunk/reactos/include/psdk/winnt.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/winnt.h?rev=2…
==============================================================================
--- trunk/reactos/include/psdk/winnt.h (original)
+++ trunk/reactos/include/psdk/winnt.h Thu May 31 22:42:28 2007
@@ -54,7 +54,6 @@
#include <winerror.h>
#include <stddef.h>
#include <sdkddkver.h>
-#include <stdint.h>
#ifndef RC_INVOKED
#include <string.h>
@@ -103,12 +102,12 @@
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;