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