home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap02 / reuse / reuse.rc < prev    next >
Text File  |  1995-05-03  |  1KB  |  50 lines

  1. /*
  2.  * REUSE.RC
  3.  *
  4.  * Resource definitions for COM Reusability demonstration Chapter 2
  5.  *
  6.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  7.  *
  8.  * Kraig Brockschmidt, Microsoft
  9.  * Internet  :  kraigb@microsoft.com
  10.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  11.  */
  12.  
  13.  
  14. #include <windows.h>
  15. #include "reuse.h"
  16.  
  17.  
  18. Icon    ICON    reuse.ico
  19.  
  20.  
  21. IDR_MENU MENU MOVEABLE DISCARDABLE
  22.     BEGIN
  23.     POPUP "&Objects"
  24.      BEGIN
  25.       POPUP "&Create Koala"
  26.        BEGIN
  27.         MENUITEM "&Containment",              IDM_CREATECONTAINMENT
  28.         MENUITEM "&Aggregation",              IDM_CREATEAGGREGATION
  29.        END
  30.  
  31.       POPUP "I&Animal"
  32.        BEGIN
  33.         MENUITEM "&Eat",                      IDM_ANIMALEAT
  34.         MENUITEM "&Sleep",                    IDM_ANIMALSLEEP
  35.         MENUITEM "&Procreate",                IDM_ANIMALPROCREATE
  36.        END
  37.  
  38.       POPUP "I&Koala"
  39.        BEGIN
  40.         MENUITEM "&ClimbEucalyptusTrees",     IDM_KOALACLIMBEUCALYPTUSTREES
  41.         MENUITEM "&PouchOpensDown",           IDM_KOALAPOUCHOPENSDOWN
  42.         MENUITEM "&SleepForHoursAfterEating", IDM_KOALASLEEPFORHOURSAFTEREATING
  43.        END
  44.  
  45.       MENUITEM "&Release",                    IDM_RELEASE
  46.       MENUITEM SEPARATOR
  47.       MENUITEM "&Exit",                       IDM_EXIT
  48.      END
  49.     END
  50.