mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
20 lines
No EOL
321 B
C
20 lines
No EOL
321 B
C
#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 |