X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6c783b03a0e0953d98a444de69dcdc598fce1ed5..18c9aebecad12ff04a971d803acbeb291fbc4ea6:/src/common/mstream.cpp diff --git a/src/common/mstream.cpp b/src/common/mstream.cpp index 21cc9ee95c..122d6e7baa 100644 --- a/src/common/mstream.cpp +++ b/src/common/mstream.cpp @@ -52,6 +52,22 @@ wxMemoryInputStream::wxMemoryInputStream(const void *data, size_t len) m_length = len; } +wxMemoryInputStream::wxMemoryInputStream(const wxMemoryOutputStream& stream) +{ + ssize_t len = (ssize_t)stream.GetLength(); + if (len == wxInvalidOffset) { + m_i_streambuf = NULL; + m_lasterror = wxSTREAM_EOF; + return; + } + m_i_streambuf = new wxStreamBuffer(wxStreamBuffer::read); + m_i_streambuf->SetBufferIO(len); // create buffer + stream.CopyTo(m_i_streambuf->GetBufferStart(), len); + m_i_streambuf->SetIntPosition(0); // seek to start pos + m_i_streambuf->Fixed(true); + m_length = len; +} + wxMemoryInputStream::~wxMemoryInputStream() { delete m_i_streambuf;