28 lines
615 B
C
Raw Normal View History

#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_CTRL_ENTER K_CTRL+K_ENTER
#define K_AUTO_ENTER K_SHIFT+K_ENTER
#define K_QUIT 10334
#define K_SAVE 10082
#define K_SHIFT_TAB K_SHIFT+K_TAB
#define K_SHIFT_F2 K_SHIFT+K_F2
#define K_SHIFT_F3 K_SHIFT+K_F3
#define K_NO 'N'
#define K_YES 'Y'
/* @END */
#endif