summaryrefslogtreecommitdiff
path: root/error.h
diff options
context:
space:
mode:
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