Reads an already-opened Sun file
| 175 | |
| 176 | //! Reads an already-opened Sun file |
| 177 | ILboolean ilLoadSunF(ILHANDLE File) |
| 178 | { |
| 179 | ILuint FirstPos; |
| 180 | ILboolean bRet; |
| 181 | |
| 182 | iSetInputFile(File); |
| 183 | FirstPos = itell(); |
| 184 | bRet = iLoadSunInternal(); |
| 185 | iseek(FirstPos, IL_SEEK_SET); |
| 186 | |
| 187 | return bRet; |
| 188 | } |
| 189 | |
| 190 | |
| 191 | //! Reads from a memory "lump" that contains a Sun |
no test coverage detected