1962954796
Add lk_bell() to ring keyboard audible bell (for rcons bell). Add LK_KEY_CLICK option to reset keyboard and enable keyclick. (off by default since theres no way to control it from userland yet).
19 lines
514 B
C
19 lines
514 B
C
/* $NetBSD: lk201var.h,v 1.3 1999/01/28 10:20:11 jonathan Exp $ */
|
|
|
|
#ifndef _LK201VAR_H_
|
|
#define _LK201VAR_H_
|
|
|
|
|
|
#ifdef _KERNEL
|
|
|
|
extern int 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_ */
|