diff options
Diffstat (limited to 'error.h')
-rw-r--r-- | error.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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 |