Allows you to override the default file-reading functions.
| 274 | |
| 275 | //! Allows you to override the default file-reading functions. |
| 276 | void ILAPIENTRY ilSetRead(fOpenRProc Open, fCloseRProc Close, fEofProc Eof, fGetcProc Getc, fReadProc Read, fSeekRProc Seek, fTellRProc Tell) |
| 277 | { |
| 278 | iopenr = Open; |
| 279 | icloser = Close; |
| 280 | EofProc = Eof; |
| 281 | GetcProc = Getc; |
| 282 | ReadProc = Read; |
| 283 | SeekRProc = Seek; |
| 284 | TellRProc = Tell; |
| 285 | |
| 286 | return; |
| 287 | } |
| 288 | |
| 289 | |
| 290 | //! Allows you to override the default file-writing functions. |
nothing calls this directly
no outgoing calls
no test coverage detected