X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c980c992630e94e71139660631a77ffbca8ed958..c60fc26d5522510e50de8b9b83cf586066781811:/src/common/mstream.cpp?ds=sidebyside diff --git a/src/common/mstream.cpp b/src/common/mstream.cpp index 4555d35062..8e81abd394 100644 --- a/src/common/mstream.cpp +++ b/src/common/mstream.cpp @@ -99,5 +99,16 @@ off_t wxMemoryOutputStream::OnSysTell() const return m_o_streambuf->Tell(); } +size_t wxMemoryOutputStream::CopyTo(char *buffer, size_t len) const +{ + if (!buffer) + return 0; + + if (len > GetSize()) + len = GetSize(); + + memcpy(buffer, m_o_streambuf->GetBufferStart(), len); + return len; +} #endif