add threaded filewatcher

This commit is contained in:
2025-03-27 01:24:57 +02:00
parent 6d0cbbb011
commit 2015894068
20 changed files with 600 additions and 95 deletions

View File

@@ -18,6 +18,8 @@ typedef double f64;
typedef uintptr_t uptr;
typedef ptrdiff_t ptrdiff;
typedef enum { HILOAD_OK = 0, HILOAD_FAIL } HiloadResult;
typedef enum { HILOAD_FAIL = 0, HILOAD_OK } HiloadResult;
#define HILOADRES(res) ((res) == HILOAD_OK)
#endif // TYPES_H_