Reads an already-opened raw file
| 46 | |
| 47 | //! Reads an already-opened raw file |
| 48 | ILboolean ilLoadRawF(ILHANDLE File) |
| 49 | { |
| 50 | ILuint FirstPos; |
| 51 | ILboolean bRet; |
| 52 | |
| 53 | iSetInputFile(File); |
| 54 | FirstPos = itell(); |
| 55 | bRet = iLoadRawInternal(); |
| 56 | iseek(FirstPos, IL_SEEK_SET); |
| 57 | |
| 58 | return bRet; |
| 59 | } |
| 60 | |
| 61 | |
| 62 | //! Reads from a raw memory "lump" |
no test coverage detected