mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-04-27 03:03:52 +00:00
17 lines
465 B
C
17 lines
465 B
C
#ifndef BC_FILE_PROCESS_DIR_H
|
|
#define BC_FILE_PROCESS_DIR_H
|
|
|
|
DECLARE_STRUCT(Blizzard__File__ProcessDirParms);
|
|
|
|
struct Blizzard__File__ProcessDirParms {
|
|
const char* pathRoot;
|
|
const char* filename;
|
|
void* cookie;
|
|
bool isDir;
|
|
};
|
|
|
|
typedef bool (*Blizzard__File__ProcessDirCallback_interface)(
|
|
const Blizzard__File__ProcessDirParms* parms);
|
|
typedef Blizzard__File__ProcessDirCallback_interface Blizzard__File__ProcessDirCallback;
|
|
|
|
#endif
|