Reads an already-opened VTF file
| 193 | |
| 194 | //! Reads an already-opened VTF file |
| 195 | ILboolean ilLoadVtfF(ILHANDLE File) |
| 196 | { |
| 197 | ILuint FirstPos; |
| 198 | ILboolean bRet; |
| 199 | |
| 200 | iSetInputFile(File); |
| 201 | FirstPos = itell(); |
| 202 | bRet = iLoadVtfInternal(); |
| 203 | iseek(FirstPos, IL_SEEK_SET); |
| 204 | |
| 205 | return bRet; |
| 206 | } |
| 207 | |
| 208 | |
| 209 | //! Reads from a memory "lump" that contains a VTF |
no test coverage detected