- Don't redefine basic types

svn path=/trunk/; revision=37718
This commit is contained in:
Stefan Ginsberg 2008-11-29 10:22:57 +00:00
parent 28d4b20129
commit 5e41c16d16

View file

@ -31,23 +31,8 @@
// Some type definitions...
// These are used later...
typedef unsigned char UCHAR;
typedef unsigned int UINT;
typedef UCHAR BYTE;
typedef UCHAR BOOLEAN; // winnt
typedef BOOLEAN * PBOOLEAN; // winnt
typedef void * PVOID64; // winnt
typedef long LONG;
typedef LONG HRESULT;
#if defined(_M_IX86)
#define FASTCALL _fastcall
#else
#define FASTCALL
#endif
typedef unsigned int UINT;
typedef unsigned char BYTE;
// Common include files - should be in the include dir of the MS supplied IFS Kit
#include <ntifs.h>