| 670 | } |
| 671 | |
| 672 | DWORD TextFile::_Read(LPVOID aBuffer, DWORD aBufSize) |
| 673 | { |
| 674 | DWORD dwRead = 0; |
| 675 | ReadFile(mFile, aBuffer, aBufSize, &dwRead, NULL); |
| 676 | return dwRead; |
| 677 | } |
| 678 | |
| 679 | DWORD TextFile::_Write(LPCVOID aBuffer, DWORD aBufSize) |
| 680 | { |
nothing calls this directly
no outgoing calls
no test coverage detected