diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-19 12:57:39 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-19 12:57:39 +0000 |
commit | 02c3171f5de4a4d4625b8e2d45e45d800d79eccd (patch) | |
tree | cd42961c96c6aca5d5ef0726ca6fc86934fa2cc0 | |
parent | 1ec5d4f68b7c61b668e31e9795580bf768a682b8 (diff) |
INTEGRATION: CWS sixtyfour05 (1.2.30); FILE MERGED
2006/04/13 10:31:52 cmc 1.2.30.1: #i63183# automation 64bit fixes
-rw-r--r-- | automation/source/inc/svcommstream.hxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/automation/source/inc/svcommstream.hxx b/automation/source/inc/svcommstream.hxx index 58f350cffa68..7a61eb627b77 100644 --- a/automation/source/inc/svcommstream.hxx +++ b/automation/source/inc/svcommstream.hxx @@ -4,9 +4,9 @@ * * $RCSfile: svcommstream.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2005-09-07 19:18:13 $ + * last change: $Author: hr $ $Date: 2006-04-19 13:57:39 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -48,17 +48,17 @@ public: SvCommStream( SvStream* pIO ); ~SvCommStream(); - ICommStream& operator>>( USHORT& rUShort ); - ICommStream& operator>>( ULONG& rULong ); - ICommStream& operator>>( unsigned char& rChar ); + ICommStream& operator>>( comm_USHORT& rUShort ); + ICommStream& operator>>( comm_ULONG& rULong ); + ICommStream& operator>>( comm_BOOL& rChar ); - ICommStream& operator<<( USHORT nUShort ); - ICommStream& operator<<( ULONG nULong ); - ICommStream& operator<<( unsigned char nChar ); + ICommStream& operator<<( comm_USHORT nUShort ); + ICommStream& operator<<( comm_ULONG nULong ); + ICommStream& operator<<( comm_BOOL nChar ); - ULONG Read( void* pData, ULONG nSize ); - ULONG Write( const void* pData, ULONG nSize ); + comm_ULONG Read( void* pData, comm_ULONG nSize ); + comm_ULONG Write( const void* pData, comm_ULONG nSize ); - BOOL IsEof() const; - ULONG SeekRel( long nPos ); + comm_BOOL IsEof() const; + comm_ULONG SeekRel( long nPos ); }; |