diff options
author | dscho <dscho> | 2002-01-16 19:45:21 +0000 |
---|---|---|
committer | dscho <dscho> | 2002-01-16 19:45:21 +0000 |
commit | 9fb7fef3c6ff17651255e78a96ae20d96c0d46b4 (patch) | |
tree | 12298025ad0e5c56d15361a55d7a57a1120a9fa0 /rfbproto.h | |
parent | 94570b019a8e88df41deeee4acbfbc545a12829a (diff) | |
download | libtdevnc-9fb7fef3c6ff17651255e78a96ae20d96c0d46b4.tar.gz libtdevnc-9fb7fef3c6ff17651255e78a96ae20d96c0d46b4.zip |
clean ups and encoding "backchannel"
Diffstat (limited to 'rfbproto.h')
-rw-r--r-- | rfbproto.h | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -268,7 +268,9 @@ typedef struct { #define rfbSetColourMapEntries 1 #define rfbBell 2 #define rfbServerCutText 3 - +#ifdef BACKCHANNEL +#define rfbBackChannel 15 +#endif /* client -> server */ @@ -297,6 +299,9 @@ typedef struct { #define rfbEncodingZlib 6 #define rfbEncodingTight 7 #define rfbEncodingZlibHex 8 +#ifdef BACKCHANNEL +#define rfbEncodingBackChannel 15 +#endif /* * Special encoding numbers: @@ -508,7 +513,6 @@ typedef struct { #define rfbTightFilterPalette 0x01 #define rfbTightFilterGradient 0x02 - /*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * XCursor encoding. This is a special encoding used to transmit X-style * cursor shapes from server to clients. Note that for this encoding, @@ -604,6 +608,10 @@ typedef struct { #define sz_rfbServerCutTextMsg 8 +#ifdef BACKCHANNEL +typedef rfbServerCutTextMsg rfbBackChannelMsg; +#endif + /*----------------------------------------------------------------------------- * Union of all server->client messages. |