File: key.h

package info (click to toggle)
ng 1.5~beta1-9
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,140 kB
  • sloc: ansic: 43,437; asm: 3,150; sh: 2,539; cpp: 1,234; makefile: 630
file content (21 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* $Id: key.h,v 1.1.1.1 2000/06/27 01:47:56 amura Exp $ */
/* key.h: Insert file for mg 2 functions that need to reference key pressed */

/*
 * $Log: key.h,v $
 * Revision 1.1.1.1  2000/06/27 01:47:56  amura
 * import to CVS
 *
 */

#ifndef EXTERN
#define EXTERN	extern
#endif

#define MAXKEY	8			/* maximum number of prefix chars */

EXTERN	struct {			/* the chacter sequence in a key */
	int	k_count;		/* number of chars		*/
	KCHAR	k_chars[MAXKEY];	/* chars			*/
}	key;
#undef	EXTERN