misc/libphysfs/lzma/CPP/7zip/Common/StreamUtils.h
author Wuzzy <Wuzzy2@mail.ru>
Fri, 09 Feb 2018 16:12:54 +0100
changeset 12942 ca23981ec219
parent 12213 bb5522e88ab2
permissions -rw-r--r--
Add a few key shortcuts in Costruction Mode

// 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