mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
15 lines
No EOL
342 B
C
15 lines
No EOL
342 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* dir;
|
|
const char* item;
|
|
void* param;
|
|
bool isdir;
|
|
};
|
|
|
|
typedef bool (*Blizzard__File__ProcessDirCallback)(const Blizzard__File__ProcessDirParms* parms);
|
|
|
|
#endif |