aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/streams.h
diff options
context:
space:
mode:
authorPaul Gilbert2019-06-16 09:32:56 -0700
committerPaul Gilbert2019-06-16 14:59:26 -0700
commit3876fb67108284063b4d133cf087a04dae6993e4 (patch)
tree6f103687d8423156e289af144f27acd6810ce013 /engines/glk/streams.h
parent3acba22cba5831b641b0bdaab26c337327d5911e (diff)
downloadscummvm-rg350-3876fb67108284063b4d133cf087a04dae6993e4.tar.gz
scummvm-rg350-3876fb67108284063b4d133cf087a04dae6993e4.tar.bz2
scummvm-rg350-3876fb67108284063b4d133cf087a04dae6993e4.zip
GLK: In progress transition to all sub-engines using Quetzal save files
Diffstat (limited to 'engines/glk/streams.h')
-rw-r--r--engines/glk/streams.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/engines/glk/streams.h b/engines/glk/streams.h
index 14ca91dfc0..2d6d48f1e1 100644
--- a/engines/glk/streams.h
+++ b/engines/glk/streams.h
@@ -66,23 +66,6 @@ struct StreamResult {
};
typedef StreamResult stream_result_t;
-struct SavegameHeader {
- uint8 _version;
- byte _interpType;
- byte _language;
- Common::String _md5;
- Common::String _saveName;
- int _year, _month, _day;
- int _hour, _minute;
- int _totalFrames;
-
- /**
- * Constructor
- */
- SavegameHeader() : _version(0), _interpType(0), _language(0), _year(0), _month(0), _day(0),
- _hour(0), _minute(0), _totalFrames(0) {}
-};
-
/**
* File details
*/
@@ -476,16 +459,6 @@ private:
int getCharUtf8();
public:
/**
- * Read a savegame header from a stream
- */
- static bool readSavegameHeader(Common::SeekableReadStream *stream, SavegameHeader &header);
-
- /**
- * Write out a savegame header
- */
- static void writeSavegameHeader(Common::WriteStream *stream, const Common::String &saveName);
-public:
- /**
* Constructor
*/
FileStream(Streams *streams, frefid_t fref, uint fmode, uint rock, bool unicode);