From 3678fd6106a25aabb94df6e3da1107a3fec2523a Mon Sep 17 00:00:00 2001 From: Marcus Comstedt Date: Sun, 10 Aug 2003 14:24:30 +0000 Subject: [PATCH] Doesn't look like these are used anymore. svn-id: r9623 --- common/savefile.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/common/savefile.h b/common/savefile.h index 8e49a8ea45f..3f8afb5a8cd 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 {