home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_09 / 1109068a < prev    next >
Text File  |  1993-05-04  |  454b  |  18 lines

  1. /*  Resources for help demonstration program.   */
  2.  
  3. #include "helpdemo.h"           /* all the defines, etc., are in 'helpdemo.h'  */
  4. #include "context.h"
  5.  
  6. mainmenu  MENU        // Menu for F1 Help window
  7. BEGIN
  8.     MENUITEM "&Exit", GEN_EXIT
  9.     POPUP "&Help"
  10.     BEGIN
  11.         MENUITEM "&Index"  ,HELP_TOPICS
  12.         MENUITEM "&Mercury",HELP_MERCURY
  13.         MENUITEM "&Venus"  ,HELP_VENUS
  14.         MENUITEM "&Earth"  ,HELP_EARTH
  15.         MENUITEM "M&ars"   ,HELP_MARS
  16.     END
  17. END
  18.