Checks if the ILHANDLE contains a valid tiff file at the current position.
| 104 | |
| 105 | //! Checks if the ILHANDLE contains a valid tiff file at the current position. |
| 106 | ILboolean ilIsValidTiffF(ILHANDLE File) |
| 107 | { |
| 108 | ILuint FirstPos; |
| 109 | ILboolean bRet; |
| 110 | |
| 111 | iSetInputFile(File); |
| 112 | FirstPos = itell(); |
| 113 | bRet = ilisValidTiffFunc(); |
| 114 | iseek(FirstPos, IL_SEEK_SET); |
| 115 | |
| 116 | return bRet; |
| 117 | } |
| 118 | |
| 119 | /*----------------------------------------------------------------------------*/ |
| 120 |
no test coverage detected