home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume14 / mush6.0 / part01 / bindings.h next >
Text File  |  1988-04-12  |  1KB  |  66 lines

  1. /* bindings.h  -- command bindings */
  2.  
  3. /* to see if a key sequece matches, prefixes or misses a set binding */
  4. #define NO_MATCH    0
  5. #define MATCH        1
  6. #define A_PREFIX_B    2
  7. #define B_PREFIX_A    3
  8.  
  9. #define NULL_MAP    (struct cmd_map *)0
  10. #define C_NULL        0
  11. #define C_GOTO_MSG    1
  12. #define C_WRITE_MSG    2
  13. #define C_WRITE_LIST    3
  14. #define C_SAVE_MSG    4
  15. #define C_SAVE_LIST    5
  16. #define C_COPY_MSG    6
  17. #define C_COPY_LIST    7
  18. #define C_DELETE_MSG    8
  19. #define C_DELETE_LIST    9
  20. #define C_UNDEL_MSG    10
  21. #define C_UNDEL_LIST    11
  22. #define C_REVERSE    12
  23. #define C_REDRAW    13
  24. #define C_NEXT_MSG    14
  25. #define C_PREV_MSG    15
  26. #define C_FIRST_MSG    16
  27. #define C_LAST_MSG    17
  28. #define C_TOP_PAGE    18
  29. #define C_BOTTOM_PAGE    19
  30. #define C_NEXT_SCREEN    20
  31. #define C_PREV_SCREEN    21
  32. #define C_SHOW_HDR    22
  33. #define C_SOURCE    23
  34. #define C_SAVEOPTS    24
  35. #define C_NEXT_SEARCH    25
  36. #define C_PREV_SEARCH    26
  37. #define C_CONT_SEARCH    27
  38. #define C_PRESERVE    28
  39. #define C_SORT        29
  40. #define C_REV_SORT    30
  41. #define C_QUIT_HARD    31
  42. #define C_QUIT        32
  43. #define C_EXIT_HARD    33
  44. #define C_EXIT        34
  45. #define C_UPDATE    35
  46. #define C_FOLDER    36
  47. #define C_SHELL_ESC    37
  48. #define C_CURSES_ESC    38
  49. #define C_PRINT_MSG    39
  50. #define C_CHDIR        40
  51. #define C_VAR_SET    41
  52. #define C_IGNORE    42
  53. #define C_ALIAS        43
  54. #define C_OWN_HDR    44
  55. #define C_VERSION    45
  56. #define C_MAIL_FLAGS    46
  57. #define C_MAIL        47
  58. #define C_REPLY_SENDER    48
  59. #define C_REPLY_ALL    49
  60. #define C_DISPLAY_MSG    50
  61. #define C_TOP_MSG    51
  62. #define C_DISPLAY_NEXT    52
  63. #define C_BIND        53
  64. #define C_UNBIND    54
  65. #define C_HELP        55 /* THIS MUST BE THE LAST ITEM */
  66.