From ed7267a8c89641e676e75587f65c14b6133de6cb Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Sun, 9 Oct 2022 10:47:38 +0200 Subject: [PATCH] OS.h --- os.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 os.h diff --git a/os.h b/os.h new file mode 100644 index 0000000..adaa426 --- /dev/null +++ b/os.h @@ -0,0 +1,9 @@ + +const U32 LIST_NO_FLAGS = 0; +const U32 LIST_RECURSE_INTO_DIRS = 1; + +struct OS_File_Info{ + String relative_path; + String absolute_path; + B32 is_directory; +};