diff options
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r-- | winsup/cygwin/include/cygwin/kd.h | 20 | ||||
-rw-r--r-- | winsup/cygwin/include/sys/kd.h | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/winsup/cygwin/include/cygwin/kd.h b/winsup/cygwin/include/cygwin/kd.h new file mode 100644 index 000000000..b4ec7c523 --- /dev/null +++ b/winsup/cygwin/include/cygwin/kd.h @@ -0,0 +1,20 @@ +/* cygwin/kd.h + + Copyright 2006 Red Hat Inc. + Written by Kazuhiro Fujieda <fujieda@jaist.ac.jp> + +This file is part of Cygwin. + +This software is a copyrighted work licensed under the terms of the +Cygwin license. Please consult the file "CYGWIN_LICENSE" for +details. */ + +#ifndef _CYGWIN_KD_H_ +#define _CYGWIN_KD_H_ + +#define KDGKBMETA 0x4b62 +#define KDSKBMETA 0x4b63 +#define K_METABIT 0x03 +#define K_ESCPREFIX 0x04 + +#endif /* _CYGWIN_KD_H_ */ diff --git a/winsup/cygwin/include/sys/kd.h b/winsup/cygwin/include/sys/kd.h new file mode 100644 index 000000000..5900efdd7 --- /dev/null +++ b/winsup/cygwin/include/sys/kd.h @@ -0,0 +1,20 @@ +/* sys/kd.h + + Copyright 2006 Red Hat, Inc. + + Written by Kazuhiro Fujieda <fujieda@jaist.ac.jp> + +This file is part of Cygwin. + +This software is a copyrighted work licensed under the terms of the +Cygwin license. Please consult the file "CYGWIN_LICENSE" for +details. */ + +/* sys/kd.h header file for Cygwin. */ + +#ifndef _SYS_KD_H +#define _SYS_KD_H + +#include <cygwin/kd.h> + +#endif /* _SYS_KD_H */ |