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 / enumrect / enumrect.rc < prev    next >
Text File  |  1995-05-03  |  1KB  |  39 lines

  1. /*
  2.  * ENUMRECT.RC
  3.  * C/C++ Enumerator Demonstrtion Chapter 2
  4.  *
  5.  * Resource definitions for Enumerator Interface examples.
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13.  
  14.  
  15. #include "enumrect.h"
  16.  
  17.  
  18. Icon    ICON    enumrect.ico
  19.  
  20.  
  21. IDR_MENU MENU MOVEABLE DISCARDABLE
  22.     BEGIN
  23.     POPUP "&Enum"
  24.      BEGIN
  25.       POPUP "&Create"
  26.        BEGIN
  27.         MENUITEM "&1.  C",                  IDM_ENUMCREATEC
  28.         MENUITEM "&2.  C++",                IDM_ENUMCREATECPP
  29.        END
  30.       MENUITEM "&Release",                  IDM_ENUMRELEASE
  31.       MENUITEM "Run &Through",              IDM_ENUMRUNTHROUGH
  32.       MENUITEM "&Every Third",              IDM_ENUMEVERYTHIRD
  33.       MENUITEM "Re&set",                    IDM_ENUMRESET
  34.       MENUITEM "C&lone",                    IDM_ENUMCLONE
  35.       MENUITEM SEPARATOR
  36.       MENUITEM "E&xit",                     IDM_ENUMEXIT
  37.      END
  38.     END
  39.