| 197 | } |
| 198 | |
| 199 | static unsigned long Read(FT_Stream stream, unsigned long offset, unsigned char * buffer, unsigned long count) |
| 200 | { |
| 201 | if (count != 0) |
| 202 | { |
| 203 | auto * reader = reinterpret_cast<ReaderPtr<Reader> *>(stream->descriptor.pointer); |
| 204 | reader->Read(offset, buffer, count); |
| 205 | } |
| 206 | |
| 207 | return count; |
| 208 | } |
| 209 | |
| 210 | static void Close(FT_Stream) {} |
| 211 |
no outgoing calls
no test coverage detected