UDI/Tools - Renamed udibuild's src dir to say udibuild
[tpg/acess2.git] / UDI / Tools / udibuild_src / include / udiprops.h
diff --git a/UDI/Tools/udibuild_src/include/udiprops.h b/UDI/Tools/udibuild_src/include/udiprops.h
new file mode 100644 (file)
index 0000000..4bbc5d4
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+ * udibuild - UDI Compilation Utility
+ * - By John Hodge (thePowersGang)
+ *
+ * udiprops.h
+ * - udiprops.txt parsing for udibuild
+ */
+#ifndef _UDIPROPS_H_
+#define _UDIPROPS_H_
+
+typedef struct sUdiprops       tUdiprops;
+
+typedef struct sUdiprops_Srcfile tUdiprops_Srcfile;
+
+struct sUdiprops_Srcfile
+{
+       const char      *Filename;
+       const char      *CompileOpts;
+};
+
+struct sUdiprops
+{
+       const char      *ModuleName;
+        int    nSourceFiles;
+       tUdiprops_Srcfile       **SourceFiles;
+       
+        int    nLines;
+       char    **Lines;
+};
+
+extern tUdiprops       *Udiprops_LoadBuild(const char *Filename);
+
+#endif
+

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