home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / linux / atari / source / source.lzh / atari-linux-0.01pl3 / drivers / char / vt_kern.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  680 b   |  28 lines

  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.  * This file is subject to the terms and conditions of the GNU General Public
  9.  * License.  See the file README.legal in the main directory of this archive
  10.  * for more details.
  11.  */
  12.  
  13. #include <linux/vt.h>
  14.  
  15. extern struct vt_struct {
  16.     unsigned char    vc_mode;        /* KD_TEXT, ... */
  17.     unsigned char    vc_kbdraw;
  18.     unsigned char    vc_kbde0;
  19.     unsigned char   vc_kbdleds;
  20.     struct vt_mode    vt_mode;
  21.     int        vt_pid;
  22.     int        vt_newvt;
  23. } vt_cons[NR_CONSOLES];
  24.  
  25. void kd_mksound(unsigned int count, unsigned int ticks);
  26.  
  27. #endif /* _VT_KERN_H */
  28.