view src/win32/7zip/7z/CPP/7zip/Archive/Common/DummyOutStream.cpp @ 1:f9f4f1b99eed

importing src directory
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 10:31:27 -0600
parents
children
line wrap: on
line source
1 // DummyOutStream.cpp
3 #include "StdAfx.h"
5 #include "DummyOutStream.h"
7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
8 {
9 UInt32 realProcessedSize;
10 HRESULT result;
11 if(!_stream)
12 {
13 realProcessedSize = size;
14 result = S_OK;
15 }
16 else
17 result = _stream->Write(data, size, &realProcessedSize);
18 _size += realProcessedSize;
19 if(processedSize != NULL)
20 *processedSize = realProcessedSize;
21 return result;
22 }