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