| 78 | } |
| 79 | |
| 80 | void BinaryEventDataSerializer::WriteSimpleData(StructuredDirectory* dir, PCWSTR streamName, const void* data, int size) { |
| 81 | auto file = dir->CreateStructuredFile(streamName); |
| 82 | file->Write(data, size); |
| 83 | } |
| 84 | |
| 85 | void BinaryEventDataSerializer::WriteSimpleData(StructuredStorage::StructuredDirectory* dir, PCWSTR streamName, const std::wstring& value) { |
| 86 | auto file = dir->CreateStructuredFile(streamName); |
nothing calls this directly
no test coverage detected