Reads an already-opened .dcx file
| 148 | |
| 149 | //! Reads an already-opened .dcx file |
| 150 | ILboolean ilLoadDcxF(ILHANDLE File) |
| 151 | { |
| 152 | ILuint FirstPos; |
| 153 | ILboolean bRet; |
| 154 | |
| 155 | iSetInputFile(File); |
| 156 | FirstPos = itell(); |
| 157 | bRet = iLoadDcxInternal(); |
| 158 | iseek(FirstPos, IL_SEEK_SET); |
| 159 | |
| 160 | return bRet; |
| 161 | } |
| 162 | |
| 163 | |
| 164 | //! Reads from a memory "lump" that contains a .dcx |
no test coverage detected