| 707 | bool segmented; // Current blob kind |
| 708 | |
| 709 | void saveData(const UCHAR* data, ULONG size) |
| 710 | { |
| 711 | fb_assert(size + hdrPrevious <= SIZEOF_BLOB_HEAD); |
| 712 | memcpy(&hdr[hdrPrevious], data, size); |
| 713 | hdrPrevious += size; |
| 714 | } |
| 715 | }; |
| 716 | BatchStream rsr_batch_stream; |
| 717 |