| 661 | } |
| 662 | |
| 663 | void TextFile::_Close() |
| 664 | { |
| 665 | if (mFile != INVALID_HANDLE_VALUE) { |
| 666 | if ((mFlags & ACCESS_MODE_MASK) != USEHANDLE) |
| 667 | CloseHandle(mFile); |
| 668 | mFile = INVALID_HANDLE_VALUE; |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | DWORD TextFile::_Read(LPVOID aBuffer, DWORD aBufSize) |
| 673 | { |
nothing calls this directly
no outgoing calls
no test coverage detected