! @brief Read a buffer of bytes from a blob. @param [in] buf A memory buffer to store bytes read from the blob. @param [in] start The index of the first byte in blob to read. @param [in] count The number of bytes to read. @details The memory buffer @a buf must be able to store at least @a count bytes. The data is stored in a binary section of the ImageFile with checksum protection, so undetecte
| 243 | @see BlobNode::byteCount, BlobNode::write |
| 244 | */ |
| 245 | void BlobNode::read( uint8_t *buf, int64_t start, size_t count ) |
| 246 | { |
| 247 | impl_->read( buf, start, count ); |
| 248 | } |
| 249 | |
| 250 | /*! |
| 251 | @brief Write a buffer of bytes to a blob. |
no outgoing calls
no test coverage detected