2025-03-06 16:40:31 -05:00
|
|
|
#ifndef BC_FILE_PROCESS_DIR_H
|
|
|
|
|
#define BC_FILE_PROCESS_DIR_H
|
|
|
|
|
|
|
|
|
|
DECLARE_STRUCT(Blizzard__File__ProcessDirParms);
|
|
|
|
|
|
|
|
|
|
struct Blizzard__File__ProcessDirParms {
|
2026-04-01 17:36:35 -04:00
|
|
|
const char* pathRoot;
|
|
|
|
|
const char* filename;
|
|
|
|
|
void* cookie;
|
|
|
|
|
bool isDir;
|
2025-03-06 16:40:31 -05:00
|
|
|
};
|
|
|
|
|
|
2026-04-12 11:36:50 -04:00
|
|
|
typedef bool (*Blizzard__File__ProcessDirCallback_interface)(
|
|
|
|
|
const Blizzard__File__ProcessDirParms* parms);
|
|
|
|
|
typedef Blizzard__File__ProcessDirCallback_interface Blizzard__File__ProcessDirCallback;
|
2025-03-06 16:40:31 -05:00
|
|
|
|
2026-04-01 17:36:35 -04:00
|
|
|
#endif
|