summaryrefslogtreecommitdiff
path: root/comm
diff options
context:
space:
mode:
authorchatty1995-02-08 14:42:54 +0000
committerchatty1995-02-08 14:42:54 +0000
commit6cca5142356c369f80d79fbdb574e55c5f2ccdab (patch)
tree1fbb4d9594959cc4d6584bb39d2b8b5650cb3738 /comm
parentebdb943e94ee1594357a7cbb0c18e386c5f821eb (diff)
downloadivy-league-6cca5142356c369f80d79fbdb574e55c5f2ccdab.zip
ivy-league-6cca5142356c369f80d79fbdb574e55c5f2ccdab.tar.gz
ivy-league-6cca5142356c369f80d79fbdb574e55c5f2ccdab.tar.bz2
ivy-league-6cca5142356c369f80d79fbdb574e55c5f2ccdab.tar.xz
changed return types of Read*
Diffstat (limited to 'comm')
-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);