| 177 | //=========================================================================== |
| 178 | |
| 179 | bool ImageReadBlock( ImageInfo* const pImageInfo, |
| 180 | UINT nBlock, |
| 181 | LPBYTE pBlockBuffer) |
| 182 | { |
| 183 | bool bRes = false; |
| 184 | if (pImageInfo->pImageType->AllowRW()) |
| 185 | bRes = pImageInfo->pImageType->Read(pImageInfo, nBlock, pBlockBuffer); |
| 186 | |
| 187 | return bRes; |
| 188 | } |
| 189 | |
| 190 | //=========================================================================== |
| 191 |
no test coverage detected