| 460 | } |
| 461 | |
| 462 | U32 Win32File::getPosition() |
| 463 | { |
| 464 | if (mStatus == Open || mStatus == EndOfFile) |
| 465 | return ::SetFilePointer((HANDLE)mHandle,0,0,FILE_CURRENT); |
| 466 | return 0; |
| 467 | } |
| 468 | |
| 469 | U32 Win32File::setPosition(U32 delta, SeekMode mode) |
| 470 | { |
no outgoing calls
no test coverage detected