JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fixed messages
[vor.git] / common.h
index be0910e..28d9ea0 100644 (file)
--- a/common.h
+++ b/common.h
@@ -1,17 +1,10 @@
 #ifndef VOR_COMMON_H
 #define VOR_COMMON_H
 
-#ifndef NULL
-#define NULL 0
-#endif
+#include <stdbool.h>
+#include <stddef.h>
 
-#ifndef true
-#define true 1
-#endif
-
-#ifndef false
-#define false 0
-#endif
+#define NONE (~0)
 
 #ifndef max
 #define max(a, b) ((a) > (b) ? (a) : (b))
 #define CONDERROR(a) if((a)) {initerror = strdup(SDL_GetError());return 1;}
 #define NULLERROR(a) CONDERROR((a) == NULL)
 
-#ifndef DEBUG
-#define DEBUG 0
+#ifdef WIN32
+# include <windows.h>
 #endif
 
-#define debug(x) if(DEBUG) { x; }
-
 #endif // VOR_COMMON_H