/* @(#)term.h	1.3 (UKC) 16/10/88 */

/*
 * term.h: Characteristics of the terminal and definitions for users of term.c.
 */

#define TERM_WIDTH	640		/* width of screen in pixels */
#define TERM_HEIGHT	400		/* height in pixels */

/*
 * Size of current window, in pixels.
 */
extern int term_width, term_height;

extern int term_cslop;		/* how many pixels a char can be out by */
				/* to speed output */

/*
 * What version of term are they running? (see dterm.doc on "versions of term")
 * It is set by term_init if possible.
 */

extern int term_version;

/* values */
#define TERM_VUNKNOWN	0
#define TERM_V6_7	1
#define	TERM_V8_1	2	/* Also 8.2, 8.3 */
#define TERM_V8_4	3
