2015-02-16 00:41:59 -05:00
|
|
|
/* defines.h -- */
|
|
|
|
|
|
|
|
#ifndef __DEFINES_H__
|
|
|
|
#define __DEFINES_H__
|
|
|
|
|
|
|
|
|
2013-09-20 06:10:30 -04:00
|
|
|
/* Must define one of
|
|
|
|
VMS | V7 | USG | BSD | MSDOS
|
|
|
|
*/
|
2013-09-19 23:47:47 -04:00
|
|
|
#define USG 1
|
|
|
|
|
|
|
|
#define PKCODE 1
|
2013-09-20 06:10:30 -04:00
|
|
|
#define SCROLLCODE 1 /* scrolling code P.K. */
|
2013-09-19 23:47:47 -04:00
|
|
|
#define ENVFUNC 1
|
2013-10-09 01:15:38 -04:00
|
|
|
|
2013-10-11 02:09:29 -04:00
|
|
|
#define NSTRING 128 /* # of bytes, string buffers */
|
|
|
|
|
2016-04-08 23:46:40 -04:00
|
|
|
#define CONTROL 0x01000000 /* Control flag, or'ed in */
|
|
|
|
#define META 0x02000000 /* Meta flag, or'ed in */
|
|
|
|
#define CTLX 0x04000000 /* ^X flag, or'ed in */
|
|
|
|
#define SPEC 0x08000000 /* special key (function keys) */
|
2013-10-10 23:20:06 -04:00
|
|
|
|
2015-01-05 03:54:21 -05:00
|
|
|
/* Actual 380x134 on a 1920x1080 screen in landscape,
|
|
|
|
if smaller font or portrait orientation limit to 400x150 */
|
|
|
|
#define MAXCOL 400
|
|
|
|
#define MAXROW 150
|
2015-02-16 00:41:59 -05:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* end of defines.h */
|