StreamUtils.h 302 B

1234567891011
  1. // StreamUtils.h
  2. #ifndef __STREAMUTILS_H
  3. #define __STREAMUTILS_H
  4. #include "../IStream.h"
  5. HRESULT ReadStream(ISequentialInStream *stream, void *data, UInt32 size, UInt32 *processedSize);
  6. HRESULT WriteStream(ISequentialOutStream *stream, const void *data, UInt32 size, UInt32 *processedSize);
  7. #endif