Author: sginsberg Date: Sat Nov 29 04:22:57 2008 New Revision: 37718
URL: http://svn.reactos.org/svn/reactos?rev=37718&view=rev Log: - Don't redefine basic types
Modified: trunk/reactos/drivers/filesystems/ext2/inc/ext2fsd.h
Modified: trunk/reactos/drivers/filesystems/ext2/inc/ext2fsd.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/ext2/in... ============================================================================== --- trunk/reactos/drivers/filesystems/ext2/inc/ext2fsd.h [iso-8859-1] (original) +++ trunk/reactos/drivers/filesystems/ext2/inc/ext2fsd.h [iso-8859-1] Sat Nov 29 04:22:57 2008 @@ -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>