michael@0: // StreamUtils.h michael@0: michael@0: #ifndef __STREAMUTILS_H michael@0: #define __STREAMUTILS_H michael@0: michael@0: #include "../IStream.h" michael@0: michael@0: HRESULT ReadStream(ISequentialInStream *stream, void *data, UInt32 size, UInt32 *processedSize); michael@0: HRESULT WriteStream(ISequentialOutStream *stream, const void *data, UInt32 size, UInt32 *processedSize); michael@0: michael@0: #endif