| 90 | } |
| 91 | |
| 92 | bool MatchPath(const string& path, const string& pattern) override { |
| 93 | std::wstring ws_path(Utf8ToWideChar(path)); |
| 94 | std::wstring ws_pattern(Utf8ToWideChar(pattern)); |
| 95 | return PathMatchSpecW(ws_path.c_str(), ws_pattern.c_str()) == TRUE; |
| 96 | } |
| 97 | |
| 98 | void SleepForMicroseconds(int64 micros) override { Sleep(micros / 1000); } |
| 99 |
nothing calls this directly
no test coverage detected