X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Ftypes.h;h=d6f49bdd68026c47a6557575f8eb15ad2e8c1d86;hb=401f78b66d66488fe465945bef36b10faa6b55ef;hp=5a1df5bd30fbc6f10c1269ebd8f9724e7bfc5242;hpb=e0e2697df0d0da483a91b1248c120aef6b3caf9b;p=rocksndiamonds.git diff --git a/src/libgame/types.h b/src/libgame/types.h index 5a1df5bd..d6f49bdd 100644 --- a/src/libgame/types.h +++ b/src/libgame/types.h @@ -1,7 +1,7 @@ /*********************************************************** * Artsoft Retro-Game Library * *----------------------------------------------------------* -* (c) 1994-2001 Artsoft Entertainment * +* (c) 1994-2006 Artsoft Entertainment * * Holger Schemel * * Detmolder Strasse 189 * * 33604 Bielefeld * @@ -17,16 +17,31 @@ #include #include #include +#include #include -typedef unsigned char boolean; +typedef int boolean; + +#if !defined(PLATFORM_WIN32) typedef unsigned char byte; +#endif -#ifndef FALSE -#define FALSE 0 -#define TRUE (!FALSE) +#ifdef TRUE +#undef TRUE #endif +#ifdef FALSE +#undef FALSE +#endif + +#ifdef AUTO +#undef AUTO +#endif + +#define TRUE 1 +#define FALSE 0 +#define AUTO -1 + #ifndef MIN #define MIN(a,b) ((a) < (b) ? (a) : (b)) #endif @@ -40,10 +55,19 @@ typedef unsigned char byte; #endif #ifndef SIGN -#define SIGN(a) ((a) < 0 ? -1 : ((a)>0 ? 1 : 0)) +#define SIGN(a) ((a) < 0 ? -1 : ((a) > 0 ? 1 : 0)) #endif #define SIZEOF_ARRAY(array, type) (sizeof(array) / sizeof(type)) #define SIZEOF_ARRAY_INT(array) SIZEOF_ARRAY(array, int) + +struct ListNode +{ + char *key; + void *content; + struct ListNode *next; +}; +typedef struct ListNode ListNode; + #endif /* TYPES_H */