home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / Developer / Marlais 0.3.1 / gc4.1-mac / cord / de_cmds.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-26  |  989 b   |  35 lines  |  [TEXT/R*ch]

  1. /*
  2.  * Copyright (c) 1994 by Xerox Corporation.  All rights reserved.
  3.  *
  4.  * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
  5.  * OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
  6.  *
  7.  * Permission is hereby granted to use or copy this program
  8.  * for any purpose,  provided the above notices are retained on all copies.
  9.  * Permission to modify the code and to distribute modified code is granted,
  10.  * provided the above notices are retained, and a notice that the code was
  11.  * modified is included with the above copyright notice.
  12.  */
  13. /* Boehm, May 19, 1994 2:24 pm PDT */
  14.  
  15. #ifndef DE_CMDS_H
  16.  
  17. # define DE_CMDS_H
  18.  
  19. # define UP     16    /* ^P */
  20. # define DOWN   14    /* ^N */
  21. # define PGDOWN 22  /* ^V */
  22. # define LEFT   2    /* ^B */
  23. # define RIGHT  6    /* ^F */
  24. # define DEL    127    /* ^? */
  25. # define BS     8    /* ^H */
  26. # define UNDO   21    /* ^U */
  27. # define WRITE  23    /* ^W */
  28. # define QUIT   4    /* ^D */
  29. # define REPEAT 18    /* ^R */
  30. # define LOCATE 12    /* ^L */
  31. # define TOP    20    /* ^T */
  32.  
  33. #endif
  34.  
  35.