| 677 | } |
| 678 | |
| 679 | DWORD TextFile::_Write(LPCVOID aBuffer, DWORD aBufSize) |
| 680 | { |
| 681 | DWORD dwWritten = 0; |
| 682 | WriteFile(mFile, aBuffer, aBufSize, &dwWritten, NULL); |
| 683 | return dwWritten; |
| 684 | } |
| 685 | |
| 686 | bool TextFile::_Seek(__int64 aDistance, int aOrigin) |
| 687 | { |
nothing calls this directly
no outgoing calls
no test coverage detected