| 70 | } |
| 71 | |
| 72 | void CFileBase::Seek(DWORD offset) |
| 73 | { |
| 74 | if (offset > m_dwSize) |
| 75 | offset = m_dwSize; |
| 76 | |
| 77 | SetFilePointer(m_hFile, offset, NULL, FILE_BEGIN); |
| 78 | } |
| 79 | |
| 80 | DWORD CFileBase::GetPosition() |
| 81 | { |
nothing calls this directly
no outgoing calls
no test coverage detected