Reads an already-opened jpeg file
| 186 | |
| 187 | //! Reads an already-opened jpeg file |
| 188 | ILboolean ilLoadJpegF(ILHANDLE File) |
| 189 | { |
| 190 | ILboolean bRet; |
| 191 | ILuint FirstPos; |
| 192 | |
| 193 | iSetInputFile(File); |
| 194 | FirstPos = itell(); |
| 195 | bRet = iLoadJpegInternal(); |
| 196 | iseek(FirstPos, IL_SEEK_SET); |
| 197 | |
| 198 | return bRet; |
| 199 | } |
| 200 | |
| 201 | |
| 202 | // Reads from a memory "lump" containing a jpeg |
no test coverage detected