1 #ifndef _VT_KERN_H
2 #define _VT_KERN_H
3
4 /*
5 * this really is an extension of the vc_cons structure in console.c, but
6 * with information needed by the vt package
7 */
8 extern struct vt_cons {
9 int vt_mode; /* KD_TEXT, ... */
10 unsigned char vc_kbdraw;
11 unsigned char vc_kbde0;
12 unsigned char vc_kbdleds;
13 } vt_cons[NR_CONSOLES];
14
15 #endif /* _VT_KERN_H */