misc/libphysfs/lzma/CPP/7zip/Common/StreamUtils.h
author Wuzzy <Wuzzy2@mail.ru>
Wed, 28 Mar 2018 15:21:23 +0200
changeset 13297 e9caada3aac1
parent 12218 bb5522e88ab2
permissions -rw-r--r--
CMake for server: Pass -dynamic flag to ghc

// StreamUtils.h

#ifndef __STREAMUTILS_H
#define __STREAMUTILS_H

#include "../IStream.h"

HRESULT ReadStream(ISequentialInStream *stream, void *data, UInt32 size, UInt32 *processedSize);
HRESULT WriteStream(ISequentialOutStream *stream, const void *data, UInt32 size, UInt32 *processedSize);

#endif