Tools/udibuild - Cleanup (can find udibuild.ini if invoked relatively)
[tpg/acess2.git] / Tools / udibuild / src / include / udiprops.h
1 /*
2  * udibuild - UDI Compilation Utility
3  * - By John Hodge (thePowersGang)
4  *
5  * udiprops.h
6  * - udiprops.txt parsing for udibuild
7  */
8 #ifndef _UDIPROPS_H_
9 #define _UDIPROPS_H_
10
11 typedef struct sUdiprops        tUdiprops;
12
13 typedef struct sUdiprops_Srcfile tUdiprops_Srcfile;
14
15 struct sUdiprops_Srcfile
16 {
17         const char      *Filename;
18         const char      *CompileOpts;
19 };
20
21 struct sUdiprops
22 {
23         tUdiprops_Srcfile       **SourceFiles;
24 };
25
26 extern tUdiprops        *Udiprops_LoadBuild(const char *Filename);
27
28 #endif
29

UCC git Repository :: git.ucc.asn.au