summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/ErrorID.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-07-30 08:50:15 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-07-30 08:50:15 +0100
commit1c8c5cff67b20d86c442b0917d6c1fc6407140df (patch)
tree53ebea660bef14cdc2ff5b7ebefb4049f705f997 /dev/CompilerKit/ErrorID.h
parent073811d89c98d6e1c078a032ca2eedefebf80384 (diff)
feat! Breaking API changes of NeCTI's LibCompiler and LibDebugger.
what: - They've now become CompilerKit and DebuggerKit. - Expanding XCoff for NeBoot PowerPC backend. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/CompilerKit/ErrorID.h')
-rw-r--r--dev/CompilerKit/ErrorID.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/dev/CompilerKit/ErrorID.h b/dev/CompilerKit/ErrorID.h
new file mode 100644
index 0000000..22ca242
--- /dev/null
+++ b/dev/CompilerKit/ErrorID.h
@@ -0,0 +1,23 @@
+/*
+ * ========================================================
+ *
+ * CompilerKit
+ * Copyright (C) 2024-2025 Amlal El Mahrouss, all rights reserved.
+ *
+ * ========================================================
+ */
+
+#pragma once
+
+#include <CompilerKit/Defines.h>
+
+#define LIBCOMPILER_SUCCESS 0
+#define LIBCOMPILER_EXEC_ERROR -30
+#define LIBCOMPILER_FILE_NOT_FOUND -31
+#define LIBCOMPILER_DIR_NOT_FOUND -32
+#define LIBCOMPILER_FILE_EXISTS -33
+#define LIBCOMPILER_TOO_LONG -34
+#define LIBCOMPILER_INVALID_DATA -35
+#define LIBCOMPILER_UNIMPLEMENTED -36
+#define LIBCOMPILER_FAT_ERROR -37
+#define LIBCOMPILER_INVALID_ARCH -38