Reads an already-opened .cut file
| 54 | |
| 55 | //! Reads an already-opened .cut file |
| 56 | ILboolean ilLoadCutF(ILHANDLE File) |
| 57 | { |
| 58 | ILuint FirstPos; |
| 59 | ILboolean bRet; |
| 60 | |
| 61 | iSetInputFile(File); |
| 62 | FirstPos = itell(); |
| 63 | bRet = iLoadCutInternal(); |
| 64 | iseek(FirstPos, IL_SEEK_SET); |
| 65 | |
| 66 | return bRet; |
| 67 | } |
| 68 | |
| 69 | |
| 70 | //! Reads from a memory "lump" that contains a .cut |
no test coverage detected