/* * HASH.H - Internal versions of Rune classes * * NOTE: Must be kept in synch with classes/gfx/frame.d */ #define HASH_GC 0x01 #define HASH_THREADWAIT 0x02 #define HASH_FONTINFO 0x03 #define HASH_RASSYM 0x10 typedef struct Hash { struct Hash *ha_Next; void *ha_Data; ulong ha_Id; int ha_Type; } Hash;