summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--comm/MsgStream.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/comm/MsgStream.h b/comm/MsgStream.h
index b33437a..333581a 100644
--- a/comm/MsgStream.h
+++ b/comm/MsgStream.h
@@ -3,7 +3,7 @@
*
* by Michel Beaudouin-Lafon
*
- * Copyright 1990-1993
+ * Copyright 1990-1995
* Laboratoire de Recherche en Informatique (LRI)
*
* UchMessage streams
@@ -39,13 +39,13 @@ protected:
void WriteBuf (const byte*, int);
- void ReadLong (lword&);
- void ReadShort (sword&);
- void ReadByte (byte&);
- void ReadChar (char&);
- void ReadString (char*);
- void ReadString (CcuString&);
- void ReadBuf (byte*, int);
+ bool ReadLong (lword&);
+ bool ReadShort (sword&);
+ bool ReadByte (byte&);
+ bool ReadChar (char&);
+ int ReadString (char*, int);
+ int ReadString (CcuString&);
+ bool ReadBuf (byte*, int);
public:
UchBufStream (UchAddress* = 0, UchAddress* = 0);