beginning to lift vmem ops out of the arena

This commit is contained in:
ed
2025-02-05 13:42:36 -05:00
parent 8936ae9aa7
commit 268271e4a7
15 changed files with 1017 additions and 170 deletions
+23
View File
@@ -0,0 +1,23 @@
#ifdef INTELLISENSE_DIRECTIVES
# pragma once
# include "base_types.h"
# include "time.h"
#endif
////////////////////////////////
//~ allen: Files
typedef U32 FilePropertyFlags;
enum
{
FilePropertyFlag_IsFolder = (1 << 0),
};
typedef struct FileProperties FileProperties;
struct FileProperties
{
U64 size;
DenseTime modified;
DenseTime created;
FilePropertyFlags flags;
};