aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/cfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/cfile.h')
-rw-r--r--engines/cge/cfile.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/engines/cge/cfile.h b/engines/cge/cfile.h
index f5d784073b..39260d2673 100644
--- a/engines/cge/cfile.h
+++ b/engines/cge/cfile.h
@@ -42,7 +42,6 @@ protected:
uint16 _lim;
long _bufMark;
virtual void readBuf();
- virtual void writeBuf();
public:
IoBuf(IOMode mode, Crypt *crpt);
IoBuf(const char *name, IOMode mode, Crypt *crpt);
@@ -50,9 +49,6 @@ public:
uint16 read(void *buf, uint16 len);
uint16 read(uint8 *buf);
int read();
- uint16 write(void *buf, uint16 len);
- uint16 write(uint8 *buf);
- void write(uint8 b);
};
@@ -61,10 +57,8 @@ public:
static uint16 _maxLineLen;
CFile(const char *name, IOMode mode, Crypt *crpt);
virtual ~CFile();
- void flush();
long mark();
long seek(long pos);
- void append(CFile &f);
};
} // End of namespace CGE