| 583 | |
| 584 | |
| 585 | void File::Flush() |
| 586 | { |
| 587 | #ifdef _WIN_ALL |
| 588 | FlushFileBuffers(hFile); |
| 589 | #else |
| 590 | #ifndef FILE_USE_OPEN |
| 591 | fflush(hFile); |
| 592 | #endif |
| 593 | fsync(GetFD()); |
| 594 | #endif |
| 595 | } |
| 596 | |
| 597 | |
| 598 | void File::SetOpenFileTime(RarTime *ftm,RarTime *ftc,RarTime *fta) |
nothing calls this directly
no outgoing calls
no test coverage detected