Reads an already-opened .pic file
| 132 | |
| 133 | //! Reads an already-opened .pic file |
| 134 | ILboolean ilLoadPicF(ILHANDLE File) |
| 135 | { |
| 136 | ILuint FirstPos; |
| 137 | ILboolean bRet; |
| 138 | |
| 139 | iSetInputFile(File); |
| 140 | FirstPos = itell(); |
| 141 | bRet = iLoadPicInternal(); |
| 142 | iseek(FirstPos, IL_SEEK_SET); |
| 143 | |
| 144 | return bRet; |
| 145 | } |
| 146 | |
| 147 | |
| 148 | //! Reads from a memory "lump" that contains a .pic |
no test coverage detected