home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 255.lha / Pretty_v3.0 / rgm.h < prev   
Text File  |  1989-06-13  |  751b  |  42 lines

  1.  
  2. #define getch( ) getc(stdin)
  3.  
  4. #define STDERR stdout
  5.  
  6. #define NULLPTR  NULL
  7. #define ENDSTR    (char)   NULL
  8.  
  9. #define BOOL  unsigned char
  10. #define LCHAR unsigned int
  11.  
  12. #define BACKSPACE   8
  13. #define TAB            9
  14. #define LINEFEED    10
  15. #define NEWLINE        10
  16. #define CR            13
  17. #define ESCAPE        27
  18. #define BLANK       32
  19. #define EXCLAIM        33
  20. #define DOLLAR        36
  21. #define PERCENT        37
  22. #define AMPERSAND   38
  23. #define ASTERISK     42
  24. #define PLUS        43
  25. #define COMMA        44
  26. #define MINUS        45
  27. #define DASH        45
  28. #define PERIOD        46
  29. #define SEMICOL        59
  30. #define QUESTION    63
  31. #define ATSIGN        64
  32. #define LEFTBRACKET 91
  33. #define RIGHTBRACKET 93
  34. #define CARET       94
  35. #define CSI            155
  36.  
  37. /* Characters Introduced by CSI */
  38. #define CUR_UP        65
  39. #define CUR_DOWN    66
  40. #define CUR_RIGHT    67
  41. #define CUR_LEFT     68
  42.