Checks if Lump is a valid .dcx lump.
| 57 | |
| 58 | //! Checks if Lump is a valid .dcx lump. |
| 59 | ILboolean ilIsValidDcxL(const void *Lump, ILuint Size) |
| 60 | { |
| 61 | iSetInputLump(Lump, Size); |
| 62 | return iIsValidDcx(); |
| 63 | } |
| 64 | |
| 65 | |
| 66 | // Internal function obtain the .dcx header from the current file. |
nothing calls this directly
no test coverage detected