| 689 | } |
| 690 | |
| 691 | __int64 TextFile::_Tell() const |
| 692 | { |
| 693 | LARGE_INTEGER in = {0}, out; |
| 694 | return SetFilePointerEx(mFile, in, &out, FILE_CURRENT) ? out.QuadPart : -1; |
| 695 | } |
| 696 | |
| 697 | __int64 TextFile::_Length() const |
| 698 | { |
nothing calls this directly
no outgoing calls
no test coverage detected