fixing LONG be typdef as int32_t

fixing ULONG be typdef as uint32_t

svn path=/trunk/; revision=26952
This commit is contained in:
Magnus Olsen 2007-05-31 18:10:14 +00:00
parent fde1a5a7fd
commit 26e9b0e0e7

View file

@ -54,6 +54,7 @@ extern "C" {
#include <winerror.h>
#include <stddef.h>
#include <sdkddkver.h>
#include <stdint.h>
#ifndef RC_INVOKED
#include <string.h>
@ -102,12 +103,12 @@ typedef char CHAR;
typedef short SHORT;
#ifndef LONG_DEFINED
#define LONG_DEFINED
typedef long LONG;
typedef unsigned long ULONG,*PULONG;
typedef int32_t LONG;
typedef uint32_t ULONG,*PULONG;
#endif//LONG_DEFINED
typedef char CCHAR, *PCCHAR;
typedef unsigned char UCHAR,*PUCHAR;
typedef unsigned short USHORT,*PUSHORT;
typedef uint8_t UCHAR,*PUCHAR;
typedef uint16_t USHORT,*PUSHORT;
typedef char *PSZ;
typedef void *PVOID,*LPVOID;