diff options
Diffstat (limited to 'automation/source/inc/cmdbasestream.hxx')
-rw-r--r-- | automation/source/inc/cmdbasestream.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/automation/source/inc/cmdbasestream.hxx b/automation/source/inc/cmdbasestream.hxx index 89bb123617c1..cdf6711560c5 100644 --- a/automation/source/inc/cmdbasestream.hxx +++ b/automation/source/inc/cmdbasestream.hxx @@ -51,13 +51,13 @@ public: void GenError( rtl::OString *pUId, comm_String *pString ); - void GenReturn( comm_UINT16 nRet, comm_ULONG nNr ); - void GenReturn( comm_UINT16 nRet, rtl::OString *pUId, comm_ULONG nNr ); + void GenReturn( comm_UINT16 nRet, comm_UINT32 nNr ); + void GenReturn( comm_UINT16 nRet, rtl::OString *pUId, comm_UINT32 nNr ); void GenReturn( comm_UINT16 nRet, rtl::OString *pUId, comm_String *pString ); void GenReturn( comm_UINT16 nRet, rtl::OString *pUId, comm_BOOL bBool ); - void GenReturn( comm_UINT16 nRet, rtl::OString *pUId, comm_ULONG nNr, comm_String *pString, comm_BOOL bBool ); + void GenReturn( comm_UINT16 nRet, rtl::OString *pUId, comm_UINT32 nNr, comm_String *pString, comm_BOOL bBool ); - void GenReturn( comm_UINT16 nRet, comm_UINT16 nMethod, comm_ULONG nNr ); + void GenReturn( comm_UINT16 nRet, comm_UINT16 nMethod, comm_UINT32 nNr ); void GenReturn( comm_UINT16 nRet, comm_UINT16 nMethod, comm_String *pString ); void GenReturn( comm_UINT16 nRet, comm_UINT16 nMethod, comm_BOOL bBool ); void GenReturn( comm_UINT16 nRet, comm_UINT16 nMethod, comm_UINT16 nNr ); @@ -67,16 +67,16 @@ public: void GenReturn( comm_UINT16 nRet, rtl::OString *pUId, comm_UINT16 nMethod, comm_String *pString ); void GenReturn( comm_UINT16 nRet, rtl::OString *pUId, comm_UINT16 nMethod, comm_String *pString, comm_BOOL bBool ); void GenReturn( comm_UINT16 nRet, rtl::OString *pUId, comm_UINT16 nMethod, comm_BOOL bBool ); - void GenReturn( comm_UINT16 nRet, rtl::OString *pUId, comm_UINT16 nMethod, comm_ULONG nNr ); + void GenReturn( comm_UINT16 nRet, rtl::OString *pUId, comm_UINT16 nMethod, comm_UINT32 nNr ); void Read ( comm_UINT16 &nNr ); - void Read ( comm_ULONG &nNr ); + void Read ( comm_UINT32 &nNr ); void Read (comm_UniChar* &aString, comm_UINT16 &nLenInChars ); void Read ( comm_BOOL &bBool ); comm_UINT16 GetNextType(); void Write( comm_UINT16 nNr ); - void Write( comm_ULONG nNr ); + void Write( comm_UINT32 nNr ); void Write( const comm_UniChar* aString, comm_UINT16 nLenInChars ); void Write( comm_BOOL bBool ); |