| 602 | |
| 603 | |
| 604 | ILint ILAPIENTRY iSeekRFile(ILint Offset, ILuint Mode) |
| 605 | { |
| 606 | if (Mode == IL_SEEK_SET) |
| 607 | Offset += ReadFileStart; // This allows us to use IL_SEEK_SET in the middle of a file. |
| 608 | return SeekRProc(FileRead, Offset, Mode); |
| 609 | } |
| 610 | |
| 611 | |
| 612 | // Returns 1 on error, 0 on success |
nothing calls this directly
no outgoing calls
no test coverage detected