summaryrefslogtreecommitdiff
path: root/sys/dev/dec/dzkbdvar.h
blob: b7b57acdaad776914f7c4dda1440f9d8d9949530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* $NetBSD: dzkbdvar.h,v 1.3 2003/01/06 21:05:37 matt Exp $ */

#ifndef _DEV_DEC_DZKBDVAR_H_
#define _DEV_DEC_DZKBDVAR_H_

struct dzkm_attach_args {
	int	daa_line;	/* Line to search */
	int	daa_flags;	/* Console etc...*/
#define	DZKBD_CONSOLE	1
};



/* These functions must be present for the keyboard/mouse to work */
int dzgetc(struct dz_linestate *);
void dzputc(struct dz_linestate *, int);
void dzsetlpr(struct dz_linestate *, int);

/* Exported functions */
int dzkbd_cnattach(struct dz_linestate *);

#endif /* _DEV_DEC_DZKBDVAR_H_ */