1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
/*
* $XConsortium: data.h /main/13 1996/11/24 17:35:40 rws $
* $XFree86: xc/programs/xterm/data.h,v 3.3.2.2 1998/04/29 04:18:39 dawes Exp $
*/
/*
* Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
*
* All Rights Reserved
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted,
* provided that the above copyright notice appear in all copies and that
* both that copyright notice and this permission notice appear in
* supporting documentation, and that the name of Digital Equipment
* Corporation not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior permission.
*
*
* DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
* ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
* DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
* ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
* SOFTWARE.
*/
#if XtSpecificationRelease >= 6 && !defined(NO_XPOLL_H)
#include <X11/Xpoll.h>
#else
#define Select(n,r,w,e,t) select(n,(fd_set*)r,(fd_set*)w,(fd_set*)e,(struct timeval *)t)
#define XFD_COPYSET(src,dst) bcopy((src)->fds_bits, (dst)->fds_bits, sizeof(fd_set))
#endif
#if USE_SYS_SELECT_H
#include <sys/types.h>
#include <sys/select.h>
#endif
extern XtAppContext app_con;
#if OPT_TEK4014
extern TekLink *TekRefresh;
extern TekWidget tekWidget;
extern XPoint T_box2[];
extern XPoint T_box3[];
extern XPoint T_boxlarge[];
extern XPoint T_boxsmall[];
extern Char *Tbptr;
extern Char *Tbuffer;
extern Char *Tpushb;
extern Char *Tpushback;
extern int T_lastx;
extern int T_lasty;
extern int Tbcnt;
extern int Ttoggled;
#endif
extern XPoint VTbox[];
extern Char *bptr;
#ifdef ALLOWLOGGING
extern char log_def_name[];
#endif
extern char *ptydev;
extern char *ttydev;
extern char *xterm_name;
extern Boolean sunFunctionKeys;
#if OPT_SUNPC_KBD
extern Boolean sunKeyboard;
#endif
extern Char buffer[];
extern int am_slave;
extern int bcnt;
#ifdef DEBUG
extern int debug;
#endif /* DEBUG */
extern int max_plus1;
extern int switchfb[];
extern fd_set Select_mask;
extern fd_set X_mask;
extern fd_set pty_mask;
extern int waitingForTrackInfo;
extern EventMode eventMode;
extern GC visualBellGC;
extern int VTgcFontMask;
extern int TEKgcFontMask;
extern XtermWidget term;
#ifdef NO_XKBSTDBELL
#undef XKB
#endif
#ifdef XKB
#include <X11/extensions/XKBbells.h>
#else
#define XkbBI_Info 0
#define XkbBI_MinorError 1
#define XkbBI_MajorError 2
#define XkbBI_TerminalBell 9
#define XkbBI_MarginBell 10
#define XkbBI_CursorStuck 11
#endif
|