Restores the read functions - must be used after iPreserveReadFuncs().
| 120 | |
| 121 | // Restores the read functions - must be used after iPreserveReadFuncs(). |
| 122 | void ILAPIENTRY iRestoreWriteFuncs() |
| 123 | { |
| 124 | PutcProc = PutcProcCopy; |
| 125 | SeekWProc = SeekWProcCopy; |
| 126 | TellWProc = TellWProcCopy; |
| 127 | WriteProc = WriteProcCopy; |
| 128 | iopenw = iopenwCopy; |
| 129 | iclosew = iclosewCopy; |
| 130 | |
| 131 | return; |
| 132 | } |
| 133 | |
| 134 | |
| 135 | // Next 7 functions are the default read functions |
nothing calls this directly
no outgoing calls
no test coverage detected