Reads an already-opened icon file.
| 39 | |
| 40 | //! Reads an already-opened icon file. |
| 41 | ILboolean ilLoadIconF(ILHANDLE File) |
| 42 | { |
| 43 | ILuint FirstPos; |
| 44 | ILboolean bRet; |
| 45 | |
| 46 | iSetInputFile(File); |
| 47 | FirstPos = itell(); |
| 48 | bRet = iLoadIconInternal(); |
| 49 | iseek(FirstPos, IL_SEEK_SET); |
| 50 | |
| 51 | return bRet; |
| 52 | } |
| 53 | |
| 54 | |
| 55 | //! Reads from a memory "lump" that contains an icon. |
no test coverage detected