summaryrefslogtreecommitdiff
path: root/automation/source/simplecm/communiio.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'automation/source/simplecm/communiio.hxx')
-rw-r--r--automation/source/simplecm/communiio.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/automation/source/simplecm/communiio.hxx b/automation/source/simplecm/communiio.hxx
index b09354054fd9..97b5aa414231 100644
--- a/automation/source/simplecm/communiio.hxx
+++ b/automation/source/simplecm/communiio.hxx
@@ -44,25 +44,25 @@
class ITransmiter
{
protected:
- comm_ULONG nLastSent;
+ comm_UINT32 nLastSent;
public:
ITransmiter() :nLastSent( 0 ){}
virtual ~ITransmiter() {}
virtual comm_UINT16 TransferBytes( const void* pBuffer, comm_UINT32 nLen ) = 0;
- comm_ULONG GetLastSent() const { return nLastSent; }
+ comm_UINT32 GetLastSent() const { return nLastSent; }
};
class IReceiver
{
protected:
- comm_ULONG nLastReceived;
+ comm_UINT32 nLastReceived;
public:
IReceiver() :nLastReceived( 0 ){}
virtual ~IReceiver() {;}
virtual comm_UINT16 ReceiveBytes( void* pBuffer, comm_UINT32 nLen ) = 0;
- comm_ULONG GetLastReceived() const { return nLastReceived; }
+ comm_UINT32 GetLastReceived() const { return nLastReceived; }
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */