aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/fileio.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/fileio.h')
-rw-r--r--engines/cge/fileio.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/engines/cge/fileio.h b/engines/cge/fileio.h
index 68b9a26d76..1f0756a276 100644
--- a/engines/cge/fileio.h
+++ b/engines/cge/fileio.h
@@ -148,11 +148,16 @@ public:
};
class EncryptedStream {
-public:
+private:
+ Common::SeekableReadStream *_readStream;
bool _error;
+public:
EncryptedStream(const char *name);
~EncryptedStream();
- Common::SeekableReadStream *_readStream;
+ bool err();
+ bool eos();
+ uint32 read(void *dataPtr, uint32 dataSize);
+ Common::String readLine();
};
extern CFile *_dat;