blob: 96413cbaea6e0b03ff8bf63abf042ce36e776726 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|