From 81c3ade33193a226cc835d2e1dc905732923bff0 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 30 Apr 2003 12:43:56 +0000 Subject: more PalmOS changes svn-id: r7220 --- common/savefile.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'common/savefile.h') diff --git a/common/savefile.h b/common/savefile.h index 2770ed1702..37dc08ced4 100644 --- a/common/savefile.h +++ b/common/savefile.h @@ -35,6 +35,8 @@ public: //Should go away. See scumm/saveload.cpp and scumm/imuse.cpp virtual int fseek(long offs, int whence) = 0; virtual int feof() = 0; +#elif defined(__PALM_OS__) + virtual int feof() = 0; #endif }; @@ -60,6 +62,9 @@ public: { return ::fseek(fh, offs, whence); } int feof() { return ::feof(fh); } +#elif defined(__PALM_OS__) + int feof() + { return ::feof(fh); } #endif }; -- cgit v1.2.3