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