Newer
Older
Microsoft / screendoor / T&R.H
@tundra tundra on 24 May 2012 1 KB Initial revision
/*  T&R.H - System Definitions For T&R Communications Software Products
			Last Modified: 06/16/87
			Copyright (C) 1986, 1987 By T.A. Daneliuk
*/

/* Boolean Values And Data Types */

#define FALSE   0
#define TRUE    !FALSE

typedef int     BOOL;                   /* Boolean Variable Type */


/*  Color Definitions  */

#define		clrnorm		color(WHITE,BLACK)		/* Normal Color */
#define		clrbord		color(LBLUE,BLACK)		/* Borders */
#define		clrbmsg		color(YELLOW,BLUE)		/* Border Messages */
#define		clrprmt		color(YELLOW,BLACK)		/* Prompts */
#define		clrresp		color(LGREEN,BLACK)		/* Responses After Editing*/
#define		clrerr		color(BLACK,RED)		/* Errors */
#define		clrstat		color(BLACK,GREEN)		/* Status */
#define		clrclr		color(BLACK,BLACK)		/* Clear Line */
#define		clrinp		REVERSE					/* Input Color */


/*  Error And Status Line Parameters  */

#define		errlin		24						/* 25th Line For Errors */
#define		errlen		79						/* Length Of Error Line */
#define		statlin		23						/* 24th Line For Status */
#define		statlen		79						/* Length Of Status Line */

/*  END OF <T&R.H> INSERT DECK  */