summaryrefslogtreecommitdiff
path: root/generic.h
diff options
context:
space:
mode:
authorPixel <Pixel>2002-06-23 11:19:06 +0000
committerPixel <Pixel>2002-06-23 11:19:06 +0000
commit54c77d2cb0f734615febdb3cb33548bf4cd6e953 (patch)
treec6105e4984b0c29f2db05352234e5fbed6a1d092 /generic.h
parentcdbb43ea328883261c6f71e6e44b16ae39173fa6 (diff)
Pfiou, huge work...
Diffstat (limited to 'generic.h')
-rw-r--r--generic.h27
1 files changed, 26 insertions, 1 deletions
diff --git a/generic.h b/generic.h
index 86dafaa..ee9bb0e 100644
--- a/generic.h
+++ b/generic.h
@@ -32,17 +32,42 @@
#define MIN(a,b) ((a)<(b)?(a):(b))
#define MAX(a,b) ((a)<(b)?(b):(a)
-
+/*
+#ifndef Uint32
typedef unsigned long int Uint32;
+#endif
+*/
+#ifndef int32
typedef signed long int int32;
+#endif
+
+#ifndef Uint16
typedef unsigned short int Uint16;
+#endif
+
+#ifndef int16
typedef signed short int int16;
+#endif
+
+#ifndef Uint8
typedef unsigned char Uint8;
+#endif
+
+#ifndef int8
typedef signed char int8;
+#endif
+#ifndef Byte
typedef Uint8 Byte;
+#endif
+
+#ifndef Word
typedef Uint16 Word;
+#endif
+
+#ifndef DWord
typedef Uint32 DWord;
+#endif
extern char verbosity;
void printm(int level, char * fmt, ...);