libtiff I/O routines
| 718 | |
| 719 | // libtiff I/O routines |
| 720 | static tsize_t tiffReadProc(thandle_t fd, tdata_t buf, tsize_t size) { |
| 721 | GTiffDataset *self = static_cast<GTiffDataset *>(fd); |
| 722 | return self->m_fp->read(buf, size); |
| 723 | } |
| 724 | |
| 725 | static tsize_t tiffWriteProc(thandle_t, tdata_t, tsize_t) { |
| 726 | assert(false); |