home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK11 / MFC / SAMPLES / MINSVR / MINSVR.RC$ / minsvr
Encoding:
Text File  |  1992-03-16  |  976 b   |  43 lines

  1. /* MinSvr.rc : Defines resources for the MinSvr application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. //
  13. */
  14.  
  15. #include <windows.h>
  16. #include <afxres.h>
  17. #include "resource.h"
  18.  
  19. AFX_IDI_STD_FRAME   ICON    MinSvr.ico
  20.  
  21. MainMenu MENU       /* if launched embedded */
  22. {
  23.     POPUP        "&File"
  24.     {
  25.         MENUITEM "&Update", IDM_UPDATE
  26.         MENUITEM SEPARATOR
  27.         MENUITEM "E&xit and Return", IDM_EXIT
  28.     }
  29.  
  30.     POPUP       "&Edit"
  31.     {
  32.         MENUITEM "&Change", IDM_CHANGESTRING
  33.     }
  34.  
  35.     POPUP       "&Help"
  36.     {
  37.         MENUITEM "&About MinSvr...", IDM_ABOUT
  38.     }
  39. }
  40.  
  41. rcinclude about.dlg
  42. rcinclude change.dlg
  43.