mirror of
https://github.com/sheumann/VNCviewGS.git
synced 2024-11-22 02:30:47 +00:00
ceeaeb7767
This is a prelude to revamping the read routines.
38 lines
1.4 KiB
C
38 lines
1.4 KiB
C
/********************************************************************
|
|
* vncsession.h - functions for establishing connection to VNC server
|
|
* and communicating with it
|
|
********************************************************************/
|
|
|
|
#include <types.h>
|
|
|
|
#define RFBVERSIONSTR "RFB 003.003\n"
|
|
#define RFBMAJORVERSIONSTR "003"
|
|
|
|
#define SwapBytes2(x) (((unsigned int)x << 8) | ((unsigned int)x >> 8))
|
|
#define SwapBytes4(x) (((unsigned long)x << 24) | \
|
|
((unsigned long)x >> 24) | \
|
|
(((unsigned long)x & 0x0000FF00) << 8) | \
|
|
(((unsigned long)x & 0x00FF0000) >> 8))
|
|
|
|
extern GrafPortPtr connectStatusWindowPtr;
|
|
|
|
extern void ** readBufferHndl; /* User internally by TCP read routines. */
|
|
extern unsigned char *readBufferPtr; /* Ptr to data read by last DoReadTCP call. */
|
|
|
|
extern unsigned int hostIpid;
|
|
|
|
extern void DisplayConnectStatus(char *, BOOLEAN);
|
|
|
|
extern void DoConnect (void);
|
|
|
|
#define DoneWithReadBuffer() do \
|
|
if (readBufferHndl) { \
|
|
DisposeHandle(readBufferHndl); \
|
|
readBufferHndl = NULL; \
|
|
} while (0) \
|
|
|
|
extern BOOLEAN DoReadTCP (unsigned long);
|
|
extern BOOLEAN DoWaitingReadTCP(unsigned long);
|
|
extern unsigned DoReadMultipleTCP(unsigned recLen, unsigned maxN);
|
|
extern void CloseTCPConnection (void);
|