home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / MCISOUND.PAK / MCISOUND.RC < prev    next >
Encoding:
Text File  |  1997-05-06  |  931 b   |  42 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
  3. //----------------------------------------------------------------------------
  4. #ifndef WORKSHOP_INVOKED
  5.   #include <windows.h>
  6. #endif
  7. #include <owl\except.rc>
  8. #include "mcisound.h"
  9.  
  10. ID_MENU MENU
  11. BEGIN
  12.   POPUP "File"
  13.   BEGIN
  14.     MENUITEM "&Open Wave\tCtrl+O...", SM_OPEN
  15.     MENUITEM SEPARATOR
  16.     MENUITEM "E&xit", SM_EXIT
  17.   END
  18.  
  19.   POPUP "Control"
  20.   BEGIN
  21.     MENUITEM "&Rewind\tCtrl+R", SM_REWIND, GRAYED
  22.     MENUITEM "&Play\tCtrl+P", SM_PLAY, GRAYED
  23.     MENUITEM "&Stop\tCtrl+S", SM_STOP, GRAYED
  24.   END
  25.   POPUP "Help"
  26.   BEGIN
  27.     MENUITEM "&About", SM_ABOUT
  28.   END
  29. END
  30.  
  31. IDA_SOUNDPLY ACCELERATORS
  32. BEGIN
  33.   "^o", SM_OPEN
  34.   "^r", SM_REWIND
  35.   "^p", SM_PLAY
  36.   "^a", SM_PLAY
  37.   "^s", SM_STOP
  38. END
  39.  
  40. #define NO_BR_VSLIDERTHUMB
  41. #include <owl\slider.rc>
  42.