X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Ftypes.h;h=1278a553a6418c85f6ee2f1bde885f78ca8594fa;hb=49897535af06400f05c764d203a4450c06a10769;hp=6e55364cb9ddd40945865a5eda9cbd262324c8ac;hpb=438885e31e0cf03304f95b125c949b9c8641e6b5;p=rocksndiamonds.git diff --git a/src/libgame/types.h b/src/libgame/types.h index 6e55364c..1278a553 100644 --- a/src/libgame/types.h +++ b/src/libgame/types.h @@ -1,15 +1,13 @@ -/*********************************************************** -* Artsoft Retro-Game Library * -*----------------------------------------------------------* -* (c) 1994-2006 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 @@ -20,9 +18,9 @@ #include #include -typedef int boolean; #if !defined(PLATFORM_WIN32) +typedef int boolean; typedef unsigned char byte; #endif @@ -74,6 +72,7 @@ struct ListNode { char *key; void *content; + struct ListNode *prev; struct ListNode *next; }; typedef struct ListNode ListNode;