mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 01:52:30 +00:00
15 lines
300 B
C++
15 lines
300 B
C++
#ifndef BC_FILE_PROCESS_DIR_FAST_HPP
|
|
#define BC_FILE_PROCESS_DIR_FAST_HPP
|
|
|
|
#include "bc/file/Types.hpp"
|
|
|
|
namespace Blizzard {
|
|
namespace File {
|
|
|
|
// dirwalk
|
|
bool ProcessDirFast(const char* name, void* param, ProcessDirCallback callback, bool flag);
|
|
|
|
} // namespace File
|
|
} // namespace Blizzard
|
|
|
|
#endif
|