home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / OS2BAS.ZIP / WINMENU.RC < prev    next >
Text File  |  1989-08-26  |  721b  |  27 lines

  1. /*  WinMenu.RC is resource file to define menus for WinMenu.BAS.
  2. **  NOTE: The resource compiler (RC) which comes with the PM Toolkit
  3. **      uses C syntax for constants, comments and block definition.
  4. */
  5.  
  6. #define ID_RESOURCE 1      /* Constants for Menu definition */
  7. #define IDM_BEEP    2
  8. #define IDM_BEEP1   3
  9. #define IDM_BEEP2   4
  10. #define IDM_BEEP3   5
  11. #define IDM_EXIT    6
  12. #define IDM_BYE     7
  13.  
  14. MENU ID_RESOURCE
  15.       {
  16.       SUBMENU "~Beep",        IDM_BEEP
  17.            {
  18.        MENUITEM "Beep ~1",     IDM_BEEP1
  19.        MENUITEM "Beep ~2",     IDM_BEEP2
  20.        MENUITEM "Beep ~3",     IDM_BEEP3
  21.            }
  22.       SUBMENU "~Exit",        IDM_EXIT
  23.            {
  24.            MENUITEM "Good ~Bye",   IDM_BYE
  25.            }
  26.       }
  27.