summaryrefslogtreecommitdiff
path: root/error.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-06-01 12:19:16 +1000
committerquou <quou@disroot.org>2024-06-01 12:20:17 +1000
commitea7cd94f7aeb177618db3907a6c86b7252e018f0 (patch)
treee972f9cf590ef756c2e41f3eac5b03e16db08300 /error.h
Initial commit.
Diffstat (limited to 'error.h')
-rw-r--r--error.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/error.h b/error.h
new file mode 100644
index 0000000..96413cb
--- /dev/null
+++ b/error.h
@@ -0,0 +1,14 @@
+#ifndef error_h
+#define error_h
+
+typedef enum {
+ error_none = 0,
+ error_file_not_found,
+ error_out_of_memory,
+ error_platform_error,
+ error_multithreading,
+ error_font,
+ error_ui
+} Error;
+
+#endif