Tells DevIL that we're reading from a file, not a lump
| 303 | |
| 304 | // Tells DevIL that we're reading from a file, not a lump |
| 305 | void iSetInputFile(ILHANDLE File) |
| 306 | { |
| 307 | ieof = iEofFile; |
| 308 | igetc = iGetcFile; |
| 309 | iread = iReadFile; |
| 310 | iseek = iSeekRFile; |
| 311 | itell = iTellRFile; |
| 312 | FileRead = File; |
| 313 | ReadFileStart = itell(); |
| 314 | } |
| 315 | |
| 316 | |
| 317 | // Tells DevIL that we're reading from a lump, not a file |
no outgoing calls
no test coverage detected