NetBSD/sys/arch/pmax/dev/lk201var.h
ad 3ce634a350 Added support for cursor keys, function keys and friends. kbdMapChar now
returns 'char *' to do this. Codes returned for the various keys match
what 'rcons' termcap entry expects.
1999-03-22 03:25:29 +00:00

19 lines
510 B
C

/* $NetBSD: lk201var.h,v 1.4 1999/03/22 03:25:29 ad Exp $ */
#ifndef _LK201VAR_H_
#define _LK201VAR_H_
#ifdef _KERNEL
extern char *kbdMapChar __P((int));
extern void KBDReset __P((dev_t, void (*)(dev_t, int)));
extern void MouseInit __P((dev_t, void (*)(dev_t, int), int (*)(dev_t)));
extern void mouseInput __P((int cc));
extern int LKgetc __P((dev_t dev));
extern void lk_divert __P((int (*getfn) __P ((dev_t dev)), dev_t in_dev));
extern void lk_bell __P ((int ring));
#endif
#endif /* _LK201VAR_H_ */