mirror of
https://github.com/sheumann/VNCviewGS.git
synced 2024-11-21 10:33:40 +00:00
141739c985
Also include a few missing prototypes, which could possibly fix bugs.
27 lines
840 B
C
27 lines
840 B
C
/********************************************************************
|
|
* vncview.h - functions not directly related to VNC session
|
|
********************************************************************/
|
|
|
|
#include <types.h>
|
|
|
|
extern GrafPortPtr newConnWindow;
|
|
|
|
extern int menuOffset;
|
|
|
|
/* Connection options */
|
|
extern int hRez;
|
|
extern BOOLEAN requestSharedSession;
|
|
extern BOOLEAN allowClipboardTransfers;
|
|
extern BOOLEAN emulate3ButtonMouse;
|
|
extern BOOLEAN viewOnlyMode;
|
|
extern BOOLEAN useHextile;
|
|
extern char vncServer[257];
|
|
extern char vncPassword[10];
|
|
|
|
extern EventRecord myEvent; /* Event Record for TaskMaster */
|
|
extern BOOLEAN vncConnected; /* Is the GS desktop active */
|
|
extern BOOLEAN colorTablesComplete; /* Are the color tables complete */
|
|
|
|
extern void DoClose (GrafPortPtr wPtr);
|
|
extern void InitMenus (int);
|