UDI/Tools - Renamed udibuild's src dir to say udibuild
[tpg/acess2.git] / UDI / 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          int    nLines;
28         char    **Lines;
29 };
30
31 extern tUdiprops        *Udiprops_LoadBuild(const char *Filename);
32
33 #endif
34

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