misc/libphysfs/lzma/CPP/7zip/Common/StreamUtils.h
author antonc27 <antonc27@mail.ru>
Thu, 15 Mar 2018 23:59:20 +0100
branchios-develop
changeset 13224 01ab48b253ef
parent 12213 bb5522e88ab2
permissions -rw-r--r--
- Pause game when it goes background (do not show anymore annoying 'confirm quit')

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