mirror of
https://github.com/sheumann/VNCviewGS.git
synced 2024-11-22 02:30:47 +00:00
31 lines
889 B
C
31 lines
889 B
C
/********************************************************************
|
|
* vncview.h - functions not directly related to VNC session
|
|
********************************************************************/
|
|
|
|
#include <types.h>
|
|
|
|
extern GrafPortPtr newConnWindow;
|
|
|
|
extern int menuOffset;
|
|
|
|
/* Connection options */
|
|
extern BOOLEAN color;
|
|
extern int hRez;
|
|
extern int vRez;
|
|
extern BOOLEAN requestSharedSession;
|
|
extern BOOLEAN allowClipboardTransfers;
|
|
extern BOOLEAN emulate3ButtonMouse;
|
|
extern BOOLEAN viewOnlyMode;
|
|
extern BOOLEAN localPointer;
|
|
extern unsigned long deleteKeysym;
|
|
extern char vncServer[257];
|
|
extern char vncPassword[10];
|
|
|
|
extern EventRecord myEvent; /* Event Record for TaskMaster */
|
|
extern BOOLEAN vncConnected; /* Is the GS desktop active */
|
|
|
|
extern void DoClose (GrafPortPtr wPtr);
|
|
extern void DrawContents (void);
|
|
extern void InitMenus (int);
|
|
/* extern void SetupCursor (int); */
|