Kernel/debug - Clean up Debug() method, bind to #define config
[tpg/acess2.git] / Usermode / Applications / axwin3_src / WM / include / common.h
index ffaff33..1f0e749 100644 (file)
@@ -8,5 +8,25 @@
 #ifndef _COMMON_H_
 #define _COMMON_H_
 
+#ifndef AXWIN_SDL_BUILD
+#include <acess/sys.h>
+#else
+#include <stdio.h>
+#define _SysDebug(f,a...)      fprintf(stderr, f"\n" ,## a)
+#endif
+
+#define TODO(str)      
+
+#define ASSERT(expr)   do{if(!(expr)){_SysDebug("%s:%i - ASSERTION FAILED: "#expr, __FILE__, __LINE__);exit(-1);}}while(0)
+
+#define UNIMPLEMENTED()        do{_SysDebug("TODO: Implement %s", __func__); for(;;);}while(0)
+
+#define        AXWIN_VERSION   0x300
+
+static inline int MIN(int a, int b)    { return (a < b) ? a : b; }
+static inline int MAX(int a, int b)    { return (a > b) ? a : b; }
+
+extern int     giScreenWidth, giScreenHeight;
+
 #endif
 

UCC git Repository :: git.ucc.asn.au