mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
24 lines
410 B
C
24 lines
410 B
C
#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;
|
|
};
|