summaryrefslogtreecommitdiff
path: root/command_line/CmdLine/Src/Envir/CLErrors.c
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2022-10-11 03:18:42 +0100
committerAsh Wolf <ninji@wuffs.org>2022-10-11 03:18:42 +0100
commit26b57fbea1a969ef6405365ff78391e9d3605621 (patch)
treeb6f14f5c083d0fbb42c5495eea7c74099ff45315 /command_line/CmdLine/Src/Envir/CLErrors.c
parent7d4bee5f8f28b72610c8518e5cb9dc145c68b816 (diff)
downloadMWCC-26b57fbea1a969ef6405365ff78391e9d3605621.tar.gz
MWCC-26b57fbea1a969ef6405365ff78391e9d3605621.zip
add cmakelists for CLion, tons and tons of reorganisation using new info from the Pro8 compiler
Diffstat (limited to 'command_line/CmdLine/Src/Envir/CLErrors.c')
-rw-r--r--command_line/CmdLine/Src/Envir/CLErrors.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/command_line/CmdLine/Src/Envir/CLErrors.c b/command_line/CmdLine/Src/Envir/CLErrors.c
new file mode 100644
index 0000000..76ff06f
--- /dev/null
+++ b/command_line/CmdLine/Src/Envir/CLErrors.c
@@ -0,0 +1,37 @@
+#include "mwcc_decomp.h"
+
+static void CLGetErrorString(SInt16 errid, char *buffer) {
+
+}
+
+static void CLMessageReporter(int flags, SInt16 errid, va_list va) {
+
+}
+
+void CLReportError(SInt16 errid, ...) {
+
+}
+
+void CLReportWarning(SInt16 errid, ...) {
+
+}
+
+void CLReport(SInt16 errid, ...) {
+
+}
+
+void CLReportOSError(SInt16 errid, int err, ...) {
+
+}
+
+void CLReportCError(SInt16 errid, int err_no, ...) {
+
+}
+
+void CLInternalError(const char *file, int line, const char *format, ...) {
+
+}
+
+void CLFatalError(const char *format, ...) {
+
+}