| 720 | |
| 721 | |
| 722 | ILint ILAPIENTRY iSeekWFile(ILint Offset, ILuint Mode) |
| 723 | { |
| 724 | if (Mode == IL_SEEK_SET) |
| 725 | Offset += WriteFileStart; // This allows us to use IL_SEEK_SET in the middle of a file. |
| 726 | return SeekWProc(FileWrite, Offset, Mode); |
| 727 | } |
| 728 | |
| 729 | |
| 730 | // Returns 1 on error, 0 on success |
nothing calls this directly
no outgoing calls
no test coverage detected