summaryrefslogtreecommitdiff
path: root/includes/compiler/CCompiler.h
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2022-11-20 00:07:22 -0500
committerAsh Wolf <ninji@wuffs.org>2022-11-20 00:07:22 -0500
commit9d2728a5605f651934fe67a6fe6986b3e4a2c011 (patch)
treee81e0a3588a0c8d1855bf28316efe27d86b04d66 /includes/compiler/CCompiler.h
parent9a46dd0e2e80790d9848c0bbd718932a27c23269 (diff)
downloadMWCC-9d2728a5605f651934fe67a6fe6986b3e4a2c011.tar.gz
MWCC-9d2728a5605f651934fe67a6fe6986b3e4a2c011.zip
add a bunch of code and a ton of stub files for later
Diffstat (limited to '')
-rw-r--r--includes/compiler/CCompiler.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/includes/compiler/CCompiler.h b/includes/compiler/CCompiler.h
new file mode 100644
index 0000000..92b483c
--- /dev/null
+++ b/includes/compiler/CCompiler.h
@@ -0,0 +1,14 @@
+#ifndef COMPILER_CCOMPILER_H
+#define COMPILER_CCOMPILER_H
+
+#include "compiler/common.h"
+
+extern Boolean systemHandles;
+extern Boolean crippled;
+extern SInt32 license_cookie;
+extern CParams cparams;
+
+extern CWPLUGIN_ENTRY(MWC_main)(CWPluginContext context);
+extern void PrintProgressFunction(const char *str);
+
+#endif