Internal function to get the header and check it.
| 105 | |
| 106 | // Internal function to get the header and check it. |
| 107 | ILboolean iIsValidPsd() |
| 108 | { |
| 109 | PSDHEAD Head; |
| 110 | |
| 111 | iGetPsdHead(&Head); |
| 112 | iseek(-(ILint)sizeof(PSDHEAD), IL_SEEK_CUR); |
| 113 | |
| 114 | return iCheckPsd(&Head); |
| 115 | } |
| 116 | |
| 117 | |
| 118 | // Internal function used to check if the HEADER is a valid Psd header. |
no test coverage detected