MCPcopy Create free account
hub / github.com/BeneficialCode/WinArk / Write

Method Write

Utils/CompoundFile.cpp:87–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85}
86
87void StructuredFile::Write(const void* buffer, uint32_t count) {
88 auto hr = m_spStream->Write(buffer, count, nullptr);
89 if (FAILED(hr))
90 throw ComException(hr);
91}
92
93void StructuredFile::Read(void* buffer, uint32_t count) {
94 auto hr = m_spStream->Read(buffer, count, nullptr);

Callers 3

DriverMonGenericDispatchFunction · 0.45
WriteEventDataMethod · 0.45
WriteSimpleDataMethod · 0.45

Calls 1

ComExceptionClass · 0.85

Tested by

no test coverage detected