VNCviewGS/vncsession.h

26 lines
856 B
C
Raw Normal View History

2015-09-23 23:46:47 +00:00
/********************************************************************
* vncsession.h - functions for establishing connection to VNC server
* and communicating with it
2015-09-23 23:46:47 +00:00
********************************************************************/
#include <types.h>
#define RFBVERSIONSTR "RFB 003.003\n"
#define RFBMAJORVERSIONSTR "003"
#define SwapBytes2(x) (((unsigned int)x << 8) | ((unsigned int)x >> 8))
2015-09-23 23:46:47 +00:00
#define SwapBytes4(x) (((unsigned long)x << 24) | \
((unsigned long)x >> 24) | \
(((unsigned long)x & 0x0000FF00) << 8) | \
(((unsigned long)x & 0x00FF0000) >> 8))
2015-09-23 23:46:47 +00:00
extern GrafPortPtr connectStatusWindowPtr;
extern unsigned int hostIpid;
extern void DisplayConnectStatus(char *, BOOLEAN);
extern void DoConnect (void);
2015-09-23 23:46:47 +00:00
extern void CloseTCPConnection (void);