diff options
author | Pixel <Pixel> | 2002-06-23 11:19:06 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-06-23 11:19:06 +0000 |
commit | 54c77d2cb0f734615febdb3cb33548bf4cd6e953 (patch) | |
tree | c6105e4984b0c29f2db05352234e5fbed6a1d092 /generic.h | |
parent | cdbb43ea328883261c6f71e6e44b16ae39173fa6 (diff) |
Pfiou, huge work...
Diffstat (limited to 'generic.h')
-rw-r--r-- | generic.h | 27 |
1 files changed, 26 insertions, 1 deletions
@@ -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, ...); |