Fix enums

This commit is contained in:
Krzosa Karol
2023-12-31 10:14:29 +01:00
parent 3ae64b8b30
commit dcb9a9bfaa
6 changed files with 13 additions and 19 deletions

View File

@@ -9,15 +9,14 @@
#endif
#endif
typedef enum OS_Result OS_Result;
typedef struct OS_Date OS_Date;
enum OS_Result {
typedef enum OS_Result {
OS_SUCCESS,
OS_ALREADY_EXISTS,
OS_PATH_NOT_FOUND,
OS_FAILURE,
};
} OS_Result;
enum {
OS_NO_FLAGS = 0,