Restores the read functions - must be used after iPreserveReadFuncs().
| 87 | |
| 88 | // Restores the read functions - must be used after iPreserveReadFuncs(). |
| 89 | void ILAPIENTRY iRestoreReadFuncs() |
| 90 | { |
| 91 | GetcProc = GetcProcCopy; |
| 92 | ReadProc = ReadProcCopy; |
| 93 | SeekRProc = SeekProcCopy; |
| 94 | TellRProc = TellProcCopy; |
| 95 | iopenr = iopenCopy; |
| 96 | icloser = icloseCopy; |
| 97 | |
| 98 | return; |
| 99 | } |
| 100 | |
| 101 | |
| 102 | // Just preserves the current read functions and replaces |
nothing calls this directly
no outgoing calls
no test coverage detected