X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Ftypes.h;h=558f180c526865d33504600f409218996c9de100;hb=a047db7b385f7523ca97deb21fdc504f34a80c7e;hp=34bc8e4aa48d1305c43d4cb5d084560eb636f2ab;hpb=41e8d55b767c898f20c29a1b0b8d2ef8840be2f5;p=rocksndiamonds.git diff --git a/src/libgame/types.h b/src/libgame/types.h index 34bc8e4a..558f180c 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-2002 Artsoft Entertainment * * Holger Schemel * * Detmolder Strasse 189 * * 33604 Bielefeld * @@ -16,10 +16,15 @@ #include #include +#include +#include #include typedef unsigned char boolean; + +#if !defined(PLATFORM_WIN32) typedef unsigned char byte; +#endif #ifndef FALSE #define FALSE 0 @@ -45,4 +50,13 @@ typedef unsigned char byte; #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 */