Revert last commit, asked by Magnus Olsen.

svn path=/trunk/; revision=26953
This commit is contained in:
Aleksey Bragin 2007-05-31 18:42:28 +00:00
parent 26e9b0e0e7
commit 977e1bb11b

View file

@ -54,7 +54,6 @@ extern "C" {
#include <winerror.h>
#include <stddef.h>
#include <sdkddkver.h>
#include <stdint.h>
#ifndef RC_INVOKED
#include <string.h>
@ -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;