27 lines
598 B
C
Executable File
27 lines
598 B
C
Executable File
#ifndef __KEYS_H
|
|
#define __KEYS_H
|
|
|
|
#ifndef XVT_INCL_CONST
|
|
#include <xvtconst.h>
|
|
#endif
|
|
|
|
/* @M */
|
|
#define K_BACKSPACE 8
|
|
#define K_TAB 9
|
|
#define K_ENTER 13
|
|
#define K_ESC 27
|
|
#define K_SPACE 32
|
|
#define K_SHIFT 1000
|
|
#define K_CTRL 10000
|
|
#define K_SHIFT_ENTER K_ENTER+K_SHIFT
|
|
#define K_SHIFT_TAB K_TAB+K_SHIFT
|
|
#define K_SHIFT_F2 K_SHIFT+K_F2
|
|
#define K_SHIFT_F3 K_SHIFT+K_F3
|
|
#define K_NO 'N'
|
|
#define K_SAVE 'S'
|
|
#define K_QUIT 'Q'
|
|
#define K_YES 'Y'
|
|
|
|
/* @END */
|
|
#endif
|