Reads an already-opened Psd file
| 160 | |
| 161 | //! Reads an already-opened Psd file |
| 162 | ILboolean ilLoadPsdF(ILHANDLE File) |
| 163 | { |
| 164 | ILuint FirstPos; |
| 165 | ILboolean bRet; |
| 166 | |
| 167 | iSetInputFile(File); |
| 168 | FirstPos = itell(); |
| 169 | bRet = iLoadPsdInternal(); |
| 170 | iseek(FirstPos, IL_SEEK_SET); |
| 171 | |
| 172 | return bRet; |
| 173 | } |
| 174 | |
| 175 | |
| 176 | //! Reads from a memory "lump" that contains a Psd |
no test coverage detected