Add KEY_SUP and KEY_SDOWN.

This commit is contained in:
Mark Hessling
2001-04-22 05:53:22 +00:00
parent 45bad5d2eb
commit c22dd130a3
2 changed files with 6 additions and 4 deletions

View File

@@ -18,7 +18,7 @@
***************************************************************************
*/
/*
$Id: curses.h,v 1.4 2001/03/02 13:39:58 mark Exp $
$Id: curses.h,v 1.5 2001/04/22 05:52:54 mark Exp $
*/
/*
*----------------------------------------------------------------------
@@ -1502,7 +1502,9 @@ extern chtype *acs_map;
# define KEY_ALT_L 0x220 /* Left-alt */
# define KEY_ALT_R 0x221 /* Right-alt */
# define KEY_RESIZE 0x222 /* Window resize */
# define KEY_MAX 0x222 /* Maximum curses key */
# define KEY_SUP 0x223 /* Shifted up arrow */
# define KEY_SDOWN 0x224 /* Shifted down arrow */
# define KEY_MAX 0x224 /* Maximum curses key */
#endif
/*----------------------------------------------------------------------

View File

@@ -65,7 +65,7 @@
#endif
#ifdef PDCDEBUG
char *rcsid_util = "$Id: util.c,v 1.2 2001/01/10 08:27:34 mark Exp $";
char *rcsid_util = "$Id: util.c,v 1.3 2001/04/22 05:53:22 mark Exp $";
#endif
/*man-start*********************************************************************
@@ -234,7 +234,7 @@ int key;
"KEY_SHIFT_L","KEY_SHIFT_R",
"KEY_CONTROL_L","KEY_CONTROL_R",
"KEY_ALT_L","KEY_ALT_R",
"KEY_RESIZE"
"KEY_RESIZE", "KEY_SUP", "KEY_SDOWN"
};
#ifdef PDCDEBUG