home *** CD-ROM | disk | FTP | other *** search
- /* Key.h
- * Ascii codes for various keys
- * Copyright © 1991 Working Software Inc. All Rights Reserved.
- * 21 Feb 91 Mike Crawford
- */
-
- /* The ascii codes for various keys are listed in IM 1 p. 248 */
-
- #define enterKey ((char)0x03)
- #define tabKey ((char)0x09) /* TAB key */
- #define retKey ((char)0x0D) /* Return key */
- #define escKey ((char)0x1B) /* Escape key */
-
- #define leftArrow ((char)0x1C)
- #define rightArrow ((char)0x1D)
- #define upArrow ((char)0x1E)
- #define downArrow ((char)0x1F)
- #define backSpace ((char)0x08)
- #define deleteKey ((char)0x7F)
-