1 typedef unsigned int uint32
;
2 typedef unsigned char uint8
;
3 typedef signed char int8
;
4 typedef unsigned short uint16
;
6 typedef struct _MAP MAP
;
8 MAP
*map_load(const char *fname
);
9 const char *map_lookup(MAP
*self
, uint16 addr
, char *pInto
);
10 const char *map_find(MAP
*self
, uint16 addr
);