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 / query / query.rc < prev    next >
Text File  |  1995-05-03  |  992b  |  39 lines

  1. /*
  2.  * QUERY.RC
  3.  *
  4.  * Resource definitions for QueryInterface 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 "query.h"
  16.  
  17.  
  18. Icon    ICON    query.ico
  19.  
  20.  
  21. IDR_MENU MENU MOVEABLE DISCARDABLE
  22.     BEGIN
  23.     POPUP "&Object"
  24.      BEGIN
  25.       POPUP "&Create"
  26.        BEGIN
  27.         MENUITEM "Object &1",               IDM_OBJECTCREATE1
  28.         MENUITEM "Object &2",               IDM_OBJECTCREATE2
  29.         MENUITEM "Object &3",               IDM_OBJECTCREATE3
  30.        END
  31.  
  32.       MENUITEM "&Release",                  IDM_OBJECTRELEASE
  33.       MENUITEM "ISample&One::GetMessage",   IDM_OBJECTGETMESSAGE
  34.       MENUITEM "ISample&Two::GetString",    IDM_OBJECTGETSTRING
  35.       MENUITEM SEPARATOR
  36.       MENUITEM "&Exit",                     IDM_OBJECTEXIT
  37.      END
  38.     END
  39.