home *** CD-ROM | disk | FTP | other *** search
- //==========================================================================;
- //
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
- // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
- // TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR
- // A PARTICULAR PURPOSE.
- //
- // Copyright (C) 1993 - 1995 Microsoft Corporation. All Rights Reserved.
- //
- //--------------------------------------------------------------------------;
- #include <windows.h>
-
- #include "MIDIPlyr.H"
- #include "MIDIPlyr.RCV"
-
- ID_ICON ICON "MIDIPlyr.ICO"
-
- ID_MENU MENU
- {
- POPUP "&File"
- {
- MENUITEM "&Open", IDM_OPEN
- MENUITEM "E&xit", IDM_EXIT
- }
-
- POPUP "&Actions"
- {
- MENUITEM "&Rewind", IDM_REWIND
- MENUITEM "&Play", IDM_PLAY
- MENUITEM "P&ause", IDM_PAUSE
- MENUITEM "&Stop", IDM_STOP
- MENUITEM "&Fast forward", IDM_FASTFWD
- }
-
- POPUP "&Options"
- {
- MENUITEM "&Toolbar", IDM_TOOLBAR
- MENUITEM "&Status bar", IDM_STATUS
- MENUITEM SEPARATOR
- MENUITEM "&Autoplay dropped files", IDM_AUTOPLAY
- }
-
- POPUP "&Play Thru"
- {
- MENUITEM "&Midi Mapper", IDM_MAPPER
- }
-
- POPUP "&Debug"
- {
- MENUITEM "&SyncUI", IDM_SYNCUI
- }
- }
-
- IDB_TOOLBAR BITMAP MOVEABLE PURE "TOOLBAR.BMP"
-
- STRINGTABLE
- {
- IDS_APPNAME, "MIDI Player"
- IDS_APPTITLEMASK, "MIDI Player - [%s]"
- IDS_UNTITLED, "Untitled"
-
- IDS_OPENFAILED, "Open of MIDI file failed"
- IDS_PREROLLFAILED, "Preroll of MIDI file failed"
- IDS_TESTERR, "Something stupid happened"
-
- IDS_HMS, "HH:MM:SS"
- IDS_TICKS, "Ticks"
-
- IDS_NOFILE, ""
- IDS_OPENED, "Stopped"
- IDS_PREROLLING, "Seeking"
- IDS_PREROLLED, "Prerolled"
- IDS_PLAYING, "Playing"
- IDS_PAUSED, "Paused"
- IDS_STOPPING, "Stopping"
- }
-