| 672 | // --------------------------------------------------------------------------- |
| 673 | |
| 674 | unsigned long long FileWin32::tell() { |
| 675 | LARGE_INTEGER li; |
| 676 | |
| 677 | li.HighPart = 0; |
| 678 | li.LowPart = SetFilePointer(m_handle, 0, &(li.HighPart), FILE_CURRENT); |
| 679 | |
| 680 | return static_cast<unsigned long long>(li.QuadPart); |
| 681 | } |
| 682 | // --------------------------------------------------------------------------- |
| 683 | |
| 684 | std::unique_ptr<File> FileWin32::open(PJ_CONTEXT *ctx, const char *filename, |
no outgoing calls
no test coverage detected