X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Ftypes.h;h=22790dc84d96cb511599da53ab68829df0ef1d6a;hb=d31107293214cf22c06b58465923e29f3a64e73b;hp=2ee05af0c7e961cbe16555889488fb1f7d708712;hpb=c9433eab5c4317ed4f89164b386a7d33562e29be;p=rocksndiamonds.git diff --git a/src/libgame/types.h b/src/libgame/types.h index 2ee05af0..22790dc8 100644 --- a/src/libgame/types.h +++ b/src/libgame/types.h @@ -17,10 +17,14 @@ #include #include #include +#include #include typedef unsigned char boolean; + +#if !defined(PLATFORM_WIN32) typedef unsigned char byte; +#endif #ifndef FALSE #define FALSE 0 @@ -40,10 +44,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 */