X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Flibgame%2Ftypes.h;h=0dfed15a1ba29280b6cac09091287218d5825926;hp=34bc8e4aa48d1305c43d4cb5d084560eb636f2ab;hb=abe44529b439ad39b4d8dbf19cbd67c9b9844279;hpb=41e8d55b767c898f20c29a1b0b8d2ef8840be2f5 diff --git a/src/libgame/types.h b/src/libgame/types.h index 34bc8e4a..0dfed15a 100644 --- a/src/libgame/types.h +++ b/src/libgame/types.h @@ -1,31 +1,45 @@ -/*********************************************************** -* Artsoft Retro-Game Library * -*----------------------------------------------------------* -* (c) 1994-2001 Artsoft Entertainment * -* Holger Schemel * -* Detmolder Strasse 189 * -* 33604 Bielefeld * -* Germany * -* e-mail: info@artsoft.org * -*----------------------------------------------------------* -* types.h * -***********************************************************/ +// ============================================================================ +// Artsoft Retro-Game Library +// ---------------------------------------------------------------------------- +// (c) 1995-2014 by Artsoft Entertainment +// Holger Schemel +// info@artsoft.org +// http://www.artsoft.org/ +// ---------------------------------------------------------------------------- +// types.h +// ============================================================================ #ifndef TYPES_H #define TYPES_H #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 @@ -39,10 +53,27 @@ 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 + +#ifndef ODD +#define ODD(a) (((a) & 1) == 1) +#endif + +#ifndef EVEN +#define EVEN(a) (((a) & 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 */