home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / SDKs / Word Services SDK 1.0.6 / Writeswell Jr 1.2.1 Sources ƒ / Library Source / Key.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-03  |  555 b   |  20 lines  |  [TEXT/KAHL]

  1. /* Key.h
  2.  * Ascii codes for various keys
  3.  * Copyright © 1991 Working Software Inc.  All Rights Reserved.
  4.  * 21 Feb 91 Mike Crawford
  5.  */
  6.  
  7. /* The ascii codes for various keys are listed in IM 1 p. 248 */
  8.  
  9. #define enterKey    ((char)0x03)
  10. #define tabKey        ((char)0x09)    /* TAB key */
  11. #define retKey        ((char)0x0D)    /* Return key */
  12. #define    escKey        ((char)0x1B)    /* Escape key */
  13.  
  14. #define    leftArrow    ((char)0x1C)
  15. #define    rightArrow    ((char)0x1D)
  16. #define    upArrow        ((char)0x1E)
  17. #define    downArrow    ((char)0x1F)
  18. #define backSpace    ((char)0x08)
  19. #define deleteKey    ((char)0x7F)
  20.