Checks if the ILHANDLE contains a valid .dcx file at the current position.
| 42 | |
| 43 | //! Checks if the ILHANDLE contains a valid .dcx file at the current position. |
| 44 | ILboolean ilIsValidDcxF(ILHANDLE File) |
| 45 | { |
| 46 | ILuint FirstPos; |
| 47 | ILboolean bRet; |
| 48 | |
| 49 | iSetInputFile(File); |
| 50 | FirstPos = itell(); |
| 51 | bRet = iIsValidDcx(); |
| 52 | iseek(FirstPos, IL_SEEK_SET); |
| 53 | |
| 54 | return bRet; |
| 55 | } |
| 56 | |
| 57 | |
| 58 | //! Checks if Lump is a valid .dcx lump. |
no test coverage detected