home *** CD-ROM | disk | FTP | other *** search
/ Cutting-Edge 3D Game Programming with C++ / CE3DC++.ISO / TOOLS / MIDIPLYR / MIDIPLYR.RC < prev    next >
Encoding:
Text File  |  1995-03-02  |  2.0 KB  |  77 lines

  1. //==========================================================================;
  2. //
  3. //  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  4. //  ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
  5. //  TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR
  6. //  A PARTICULAR PURPOSE.
  7. //
  8. //  Copyright (C) 1993 - 1995 Microsoft Corporation. All Rights Reserved.
  9. //
  10. //--------------------------------------------------------------------------;
  11. #include <windows.h>
  12.  
  13. #include "MIDIPlyr.H"
  14. #include "MIDIPlyr.RCV"
  15.  
  16. ID_ICON ICON "MIDIPlyr.ICO"
  17.  
  18. ID_MENU MENU
  19. {
  20.     POPUP "&File"
  21.     {
  22.         MENUITEM "&Open",           IDM_OPEN
  23.         MENUITEM "E&xit",           IDM_EXIT
  24.     }
  25.  
  26.     POPUP "&Actions"
  27.     {
  28.         MENUITEM "&Rewind",         IDM_REWIND
  29.         MENUITEM "&Play",           IDM_PLAY
  30.         MENUITEM "P&ause",          IDM_PAUSE
  31.         MENUITEM "&Stop",           IDM_STOP
  32.         MENUITEM "&Fast forward",   IDM_FASTFWD
  33.     }
  34.  
  35.     POPUP "&Options"
  36.     {
  37.         MENUITEM "&Toolbar",        IDM_TOOLBAR
  38.         MENUITEM "&Status bar",     IDM_STATUS
  39.         MENUITEM SEPARATOR
  40.         MENUITEM "&Autoplay dropped files", IDM_AUTOPLAY
  41.     }
  42.  
  43.     POPUP "&Play Thru"
  44.     {
  45.         MENUITEM "&Midi Mapper",    IDM_MAPPER
  46.     }
  47.  
  48.     POPUP "&Debug"
  49.     {
  50.         MENUITEM "&SyncUI",         IDM_SYNCUI
  51.     }
  52. }
  53.  
  54. IDB_TOOLBAR BITMAP MOVEABLE PURE "TOOLBAR.BMP"
  55.  
  56. STRINGTABLE
  57. {
  58.     IDS_APPNAME,        "MIDI Player"
  59.     IDS_APPTITLEMASK,   "MIDI Player - [%s]"
  60.     IDS_UNTITLED,       "Untitled"
  61.  
  62.     IDS_OPENFAILED,     "Open of MIDI file failed"
  63.     IDS_PREROLLFAILED,  "Preroll of MIDI file failed"
  64.     IDS_TESTERR,        "Something stupid happened"
  65.  
  66.     IDS_HMS,            "HH:MM:SS"
  67.     IDS_TICKS,          "Ticks"
  68.  
  69.     IDS_NOFILE,         ""
  70.     IDS_OPENED,         "Stopped"
  71.     IDS_PREROLLING,     "Seeking"
  72.     IDS_PREROLLED,      "Prerolled"
  73.     IDS_PLAYING,        "Playing"
  74.     IDS_PAUSED,         "Paused"
  75.     IDS_STOPPING,       "Stopping"
  76. }
  77.