X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Ftypes.h;h=1c527d09faed9d414877114d847be9e1a0eaa419;hb=a4eaa7fcd8ca604faeee50f049c441415aa4968c;hp=5722e05ddc3a512e24c1c2bfa167f0786494ee4c;hpb=ff56a43aa3799aa3357f4deca4d6482fc25a6a41;p=rocksndiamonds.git diff --git a/src/libgame/types.h b/src/libgame/types.h index 5722e05d..1c527d09 100644 --- a/src/libgame/types.h +++ b/src/libgame/types.h @@ -1,7 +1,7 @@ /*********************************************************** * Artsoft Retro-Game Library * *----------------------------------------------------------* -* (c) 1994-2000 Artsoft Entertainment * +* (c) 1994-2002 Artsoft Entertainment * * Holger Schemel * * Detmolder Strasse 189 * * 33604 Bielefeld * @@ -14,6 +14,11 @@ #ifndef TYPES_H #define TYPES_H +#include +#include +#include +#include + typedef unsigned char boolean; typedef unsigned char byte; @@ -38,4 +43,16 @@ typedef unsigned char byte; #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 */