diff options
Diffstat (limited to 'common/rfb/CMsgReader.h')
-rw-r--r-- | common/rfb/CMsgReader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/rfb/CMsgReader.h b/common/rfb/CMsgReader.h index ab55aed8..3b1c0ddb 100644 --- a/common/rfb/CMsgReader.h +++ b/common/rfb/CMsgReader.h @@ -24,7 +24,7 @@ #ifndef __RFB_CMSGREADER_H__ #define __RFB_CMSGREADER_H__ -#include <rdr/types.h> +#include <stdint.h> #include <rfb/Rect.h> #include <rfb/encodings.h> @@ -53,7 +53,7 @@ namespace rfb { bool readSetColourMapEntries(); bool readBell(); bool readServerCutText(); - bool readExtendedClipboard(rdr::S32 len); + bool readExtendedClipboard(int32_t len); bool readFence(); bool readEndOfContinuousUpdates(); @@ -83,7 +83,7 @@ namespace rfb { stateEnum state; - rdr::U8 currentMsgType; + uint8_t currentMsgType; int nUpdateRectsLeft; Rect dataRect; int rectEncoding; |