mirror of
https://github.com/Museum-of-Art-and-Digital-Entertainment/macross.git
synced 2024-12-02 19:49:17 +00:00
15 lines
275 B
C
15 lines
275 B
C
|
#ifndef MAP_H_
|
||
|
#define MAP_H_
|
||
|
|
||
|
#include "slinkyTypes.h"
|
||
|
|
||
|
typedef struct {
|
||
|
symbolType *symbol;
|
||
|
stringType *fileName;
|
||
|
} loadMapTableEntryType;
|
||
|
|
||
|
int compareLoadMapEntries(loadMapTableEntryType *entry1, loadMapTableEntryType *entry2);
|
||
|
void outputLoadMap(void);
|
||
|
|
||
|
#endif
|