| 469 | } |
| 470 | |
| 471 | U32 Win32File::getPosition() |
| 472 | { |
| 473 | if (mStatus == Open || mStatus == EndOfFile) |
| 474 | return ::SetFilePointer((HANDLE)mHandle,0,0,FILE_CURRENT); |
| 475 | return 0; |
| 476 | } |
| 477 | |
| 478 | U32 Win32File::setPosition(U32 delta, SeekMode mode) |
| 479 | { |
no outgoing calls
no test coverage detected