feat(profile): add more filesystem API stuff

This commit is contained in:
phaneron 2025-03-16 03:25:07 -04:00
parent fb267a5683
commit 3cd843a220
20 changed files with 494 additions and 163 deletions

View file

@ -0,0 +1,20 @@
#ifndef BC_OS_FILE_DATA_H
#define BC_OS_FILE_DATA_H
DECLARE_STRUCT(OS_FILE_DATA);
DECLARE_STRUCT(FileListParms);
struct OS_FILE_DATA {
uint32_t size;
uint32_t flags;
char fileName[260];
};
struct OsFileList__Internal__FileListParms {
void* callback;
void* param;
uint32_t flags;
char* pattern;
};
#endif