aboutsummaryrefslogtreecommitdiff
path: root/error.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2023-05-02 21:02:04 +1000
committerquou <quou@disroot.org>2023-05-02 21:02:04 +1000
commitc1efdf9b0875f2a39488a86cd838947a24fab9fc (patch)
treeb459d024fa99029758f8d2f8630470fe6060122e /error.h
Initial commit.
Diffstat (limited to 'error.h')
-rw-r--r--error.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/error.h b/error.h
new file mode 100644
index 0000000..52b9422
--- /dev/null
+++ b/error.h
@@ -0,0 +1,11 @@
+#ifndef error_h
+#define error_h
+
+typedef enum {
+ error_none = 0,
+ error_file_not_found,
+ error_out_of_memory,
+ error_invalid_asset
+} Error;
+
+#endif