mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-12 23:51:37 -07:00
0ab226f739
They'll be removed on demand in libgen repo
24 lines
440 B
C
24 lines
440 B
C
#ifdef INTELLISENSE_DIRECTIVES
|
|
# pragma once
|
|
# include "base_types.h"
|
|
# include "time.h"
|
|
#endif
|
|
|
|
////////////////////////////////
|
|
//~ allen: Files
|
|
|
|
typedef MD_U32 MD_FilePropertyFlags;
|
|
enum
|
|
{
|
|
MD_FilePropertyFlag_IsFolder = (1 << 0),
|
|
};
|
|
|
|
typedef struct MD_FileProperties MD_FileProperties;
|
|
struct MD_FileProperties
|
|
{
|
|
MD_U64 size;
|
|
MD_DenseTime modified;
|
|
MD_DenseTime created;
|
|
MD_FilePropertyFlags flags;
|
|
};
|