Tools/udibuild - Implemented linking
[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         const char      *ModuleName;
24          int    nSourceFiles;
25         tUdiprops_Srcfile       **SourceFiles;
26 };
27
28 extern tUdiprops        *Udiprops_LoadBuild(const char *Filename);
29
30 #endif
31

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