diff options
author | Marcus Comstedt | 2003-08-10 14:24:30 +0000 |
---|---|---|
committer | Marcus Comstedt | 2003-08-10 14:24:30 +0000 |
commit | 3678fd6106a25aabb94df6e3da1107a3fec2523a (patch) | |
tree | 8bc267ad24d77f7a799238f9eae809f9fe47fc62 | |
parent | e8d04067a08a91f8eae5a9d3178518f9f8cebc78 (diff) | |
download | scummvm-rg350-3678fd6106a25aabb94df6e3da1107a3fec2523a.tar.gz scummvm-rg350-3678fd6106a25aabb94df6e3da1107a3fec2523a.tar.bz2 scummvm-rg350-3678fd6106a25aabb94df6e3da1107a3fec2523a.zip |
Doesn't look like these are used anymore.
svn-id: r9623
-rw-r--r-- | common/savefile.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/common/savefile.h b/common/savefile.h index 8e49a8ea45..3f8afb5a8c 100644 --- a/common/savefile.h +++ b/common/savefile.h @@ -31,11 +31,6 @@ public: virtual ~SaveFile() {} virtual int fread(void *buf, int size, int cnt) = 0; virtual int fwrite(void *buf, int size, int cnt) = 0; -#ifdef _WIN32_WCE - //Should go away. See scumm/saveload.cpp and scumm/imuse.cpp - virtual int fseek(long offs, int whence) = 0; - virtual int feof() = 0; -#endif }; class StdioSaveFile : public SaveFile { @@ -55,12 +50,6 @@ public: { return ::fread(buf, size, cnt, fh); } int fwrite(void *buf, int size, int cnt) { return ::fwrite(buf, size, cnt, fh); } -#ifdef _WIN32_WCE - int fseek(long offs, int whence) - { return ::fseek(fh, offs, whence); } - int feof() - { return ::feof(fh); } -#endif }; class SaveFileManager { |