Fri, 15 Mar 2013 20:11:18 +0200
Initial commit
0 | 1 | #ifndef __IO_H__ |
2 | #define __IO_H__ | |
3 | ||
4 | #include "common.h" | |
5 | #include "ldtypes.h" | |
6 | #include "str.h" | |
7 | ||
8 | // PROTOTYPES | |
9 | OpenFile* IO_FindLoadedFile (str name); | |
10 | OpenFile* IO_ParseLDFile (str path); | |
11 | LDObject* ParseLine (str zLine); | |
12 | ||
13 | extern vector<OpenFile*> g_LoadedFiles; | |
14 | ||
15 | #endif |