COMMON: Push #include stream.h from zlib.h to zlib.cpp

svn-id: r54353
This commit is contained in:
Max Horn 2010-11-19 00:10:09 +00:00
parent 34272e2529
commit 5c7d7a85db
2 changed files with 6 additions and 3 deletions

View file

@ -25,6 +25,7 @@
#include "common/zlib.h"
#include "common/util.h"
#include "common/stream.h"
#if defined(USE_ZLIB)
#ifdef __SYMBIAN32__

View file

@ -27,10 +27,12 @@
#define COMMON_ZLIB_H
#include "common/scummsys.h"
#include "common/stream.h"
namespace Common {
class SeekableReadStream;
class WriteStream;
#if defined(USE_ZLIB)
/**
@ -54,7 +56,7 @@ bool uncompress(byte *dst, unsigned long *dstLen, const byte *src, unsigned long
* It is safe to call this with a NULL parameter (in this case, NULL is
* returned).
*/
Common::SeekableReadStream *wrapCompressedReadStream(Common::SeekableReadStream *toBeWrapped);
SeekableReadStream *wrapCompressedReadStream(SeekableReadStream *toBeWrapped);
/**
* Take an arbitrary WriteStream and wrap it in a custom stream which provides
@ -65,7 +67,7 @@ Common::SeekableReadStream *wrapCompressedReadStream(Common::SeekableReadStream
* It is safe to call this with a NULL parameter (in this case, NULL is
* returned).
*/
Common::WriteStream *wrapCompressedWriteStream(Common::WriteStream *toBeWrapped);
WriteStream *wrapCompressedWriteStream(WriteStream *toBeWrapped);
} // End of namespace Common