home *** CD-ROM | disk | FTP | other *** search
/ 350 Great Games / 350GamesWindows31.iso / progscr.mnu < prev    next >
Text File  |  1997-07-25  |  2KB  |  55 lines

  1. ******************************************************************************
  2. MENU DESCRIPTOR FOR EXAM.C Program
  3. ******************************************************************************
  4. . spaces in a begining of a line are ignored.
  5. . Any line that does not start with the following is considered a comment line
  6.         1. "
  7.         2. LINE
  8.         3. SUBMENU
  9.         4. END
  10.  
  11. . first number written is the id number retured when that menu is selected
  12. . second number is the keyboard code for accelerating that menu entry.
  13.   When that key is pressed, the barmenu function returns the corresponding
  14.   id number without activating the menu.
  15.  
  16. . The id number for a title does not do anything unless, the title does
  17.   not have any subtitles. This id number can be omitted.  If an accelerator
  18.   is to be placed for any title, the id number must be present although it
  19.   will not be of any significance.
  20. ******************************************************************************
  21.  
  22.  
  23. Constants (for reference)
  24.   286 = Alt-A
  25.   289 = Alt-F
  26.   291 = Alt-H
  27.   301 = Alt-X
  28.  
  29.   315 = F1
  30.   
  31.   27  = Esc
  32.  
  33.  
  34. "%^File"                                  4000 289
  35. "^Back"                                   4010 27
  36. LINE
  37. "E^xit"                                   4020 301
  38.  
  39. "%^Actions"                               6000 286
  40. "^Copy"                                   6020
  41. "^Install"                                6040
  42. "^Setup"                                  6030
  43. LINE
  44. "^Run"                                    6010
  45.  
  46.  
  47. "%^Help"                                  5000 291
  48. "^Help on Help"                           5020 
  49. "^Help Contents"                          5010 315
  50. LINE
  51. "^ABOUT"                                  5030
  52.  
  53.  
  54.  
  55.