| 1233 | } |
| 1234 | |
| 1235 | size_t FileSystem::ReadFileWithProgress(std::FILE* fp, void* dst, size_t length, |
| 1236 | ProgressCallback* progress, Error* error, size_t chunk_size) |
| 1237 | { |
| 1238 | progress->SetProgressRange(100); |
| 1239 | |
| 1240 | return FileSystem::ReadFileWithPartialProgress(fp, dst, length, progress, 0, 100, error, chunk_size); |
| 1241 | } |
| 1242 | |
| 1243 | size_t FileSystem::ReadFileWithPartialProgress(std::FILE* fp, void* dst, size_t length, |
| 1244 | ProgressCallback* progress, int startPercent, int endPercent, Error* error, size_t chunk_size) |
nothing calls this directly
no test coverage detected