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

  1. /************************************************************
  2. *   File Name:   Demo3.RC
  3. *
  4. *   Description: This is the resource file for the final PM
  5. *                version of Demo3.BAS. It defines a menu for
  6. *                the sound effects.
  7. ************************************************************/
  8.  
  9. #define ID_MENU      1
  10. #define IDM_SOUND    2
  11. #define IDM_BOUNCING 3
  12. #define IDM_FALLING  4
  13. #define IDM_KLAXON   5
  14. #define IDM_SIREN    6
  15. #define IDM_QUIT     7
  16. MENU ID_MENU
  17.       {
  18.       SUBMENU "~Sound Effects",          IDM_SOUND
  19.            {
  20.            MENUITEM "~Bouncing",   IDM_BOUNCING
  21.        MENUITEM "~Falling",   IDM_FALLING
  22.            MENUITEM "~Klaxon",   IDM_KLAXON
  23.            MENUITEM "~Siren", IDM_SIREN
  24.            MENUITEM "~Quit", IDM_QUIT
  25.            }
  26.       }
  27.