remove conflicts

This commit is contained in:
David Voswinkel
2009-06-02 22:16:05 +02:00
parent ae0f35d746
commit 551ecb1915
4 changed files with 16 additions and 17 deletions

View File

@@ -4,9 +4,6 @@
#ifndef _INTEGER
#if 0
#include <windows.h>
#else
/* These types must be 16-bit, 32-bit or larger integer */
typedef int INT;
@@ -29,10 +26,14 @@ typedef unsigned long ULONG;
typedef unsigned long DWORD;
/* Boolean type */
typedef enum {
FALSE = 0,
TRUE = 1
} BOOL;
typedef enum { FALSE = 0, TRUE } BOOL;
/*
#define FALSE 0
#define TRUE 1
typedef int BOOL;
*/
#endif