Reads an already-opened .hdr file
| 170 | |
| 171 | //! Reads an already-opened .hdr file |
| 172 | ILboolean ilLoadHdrF(ILHANDLE File) |
| 173 | { |
| 174 | ILuint FirstPos; |
| 175 | ILboolean bRet; |
| 176 | |
| 177 | iSetInputFile(File); |
| 178 | FirstPos = itell(); |
| 179 | bRet = iLoadHdrInternal(); |
| 180 | iseek(FirstPos, IL_SEEK_SET); |
| 181 | |
| 182 | return bRet; |
| 183 | } |
| 184 | |
| 185 | |
| 186 | //! Reads from a memory "lump" that contains a .hdr |
no test coverage detected