| 71 | } |
| 72 | |
| 73 | void write(const SnapshotData::DumpRecord& record) |
| 74 | { |
| 75 | const ULONG length = record.getLength(); |
| 76 | dump->write(offset, sizeof(ULONG), &length); |
| 77 | dump->write(offset, length, record.getData()); |
| 78 | } |
| 79 | |
| 80 | private: |
| 81 | MonitoringData* const dump; |