home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / directx / flip3d / flipcube.rc < prev    next >
Encoding:
Text File  |  1997-07-15  |  2.7 KB  |  71 lines

  1. /**************************************************************************
  2.  
  3.     FLIPCUBE.RC - A spinning cube demo for DirectDraw
  4.  
  5.  **************************************************************************/
  6. /**************************************************************************
  7.  
  8.     (C) Copyright 1995-1996 Microsoft Corp.  All rights reserved.
  9.  
  10.     You have a royalty-free right to use, modify, reproduce and
  11.     distribute the Sample Files (and/or any modified version) in
  12.     any way you find useful, provided that you agree that
  13.     Microsoft has no warranty obligations or liability for any
  14.     Sample Application Files which are modified.
  15.  
  16.  **************************************************************************/
  17.  
  18. #include <windows.h>
  19. #include "flipcube.h"
  20.  
  21. AppIcon ICON    flipcube.ico
  22. Checker BITMAP  Checker.bmp
  23. WIN95   BITMAP  Win95.bmp
  24.  
  25. AppAccel ACCELERATORS DISCARDABLE
  26. BEGIN
  27.     VK_ESCAPE,      MENU_EXIT,      VIRTKEY,NOINVERT
  28.     VK_F12,         MENU_EXIT,      VIRTKEY,NOINVERT
  29.     VK_F1,          MENU_ABOUT,     VIRTKEY,NOINVERT
  30.     VK_F3,          MENU_SPIN,      VIRTKEY,NOINVERT
  31.     VK_F7,          MENU_SMALLER,   VIRTKEY,NOINVERT
  32.     VK_F8,          MENU_LARGER,    VIRTKEY,NOINVERT
  33.  
  34.     VK_F4,          MENU_TEXTURE,           VIRTKEY,NOINVERT
  35.     VK_F5,          MENU_PERSPECTIVE,       VIRTKEY,NOINVERT
  36.     VK_F6,          MENU_DITHER,            VIRTKEY,NOINVERT
  37. END
  38.  
  39. AppAbout DIALOG DISCARDABLE  22, 17, 144, 75
  40. STYLE DS_MODALFRAME | WS_POPUP
  41. BEGIN
  42.     CTEXT           "DirectDraw Spinning Cube Demo",-1,25,6,93,8
  43.     CTEXT           "Copyright (c) 1995-1996 Microsoft Corp.",-1,5,47,132,9
  44.     ICON            "AppIcon",-1,62,20,18,20
  45.     DEFPUSHBUTTON   "OK",IDOK,55,59,32,14,WS_GROUP
  46. END
  47.  
  48. AppMenu menu
  49. begin
  50.     POPUP "&Cube"
  51.         begin
  52.             MENUITEM "&Larger\tF7",         MENU_LARGER
  53.             MENUITEM "&Smaller\tF8",        MENU_SMALLER
  54.             MENUITEM SEPARATOR
  55.             MENUITEM "Textures\tF4",        MENU_TEXTURE
  56.             MENUITEM "Perspective\tF5",     MENU_PERSPECTIVE
  57.             MENUITEM "Dither\tF6",          MENU_DITHER
  58.             MENUITEM SEPARATOR
  59.             MENUITEM "Modulate",            MENU_MODULATE
  60.             MENUITEM "Copy",                MENU_COPY
  61.             MENUITEM "Decal",               MENU_DECAL
  62.             MENUITEM SEPARATOR
  63.             MENUITEM "Cull - None",         MENU_CULL_NONE
  64.             MENUITEM "Cull - CW",           MENU_CULL_CW
  65.             MENUITEM "Cull - CCW",          MENU_CULL_CCW
  66.             MENUITEM SEPARATOR
  67.             MENUITEM "&About...\tF1",       MENU_ABOUT
  68.             MENUITEM "E&xit\tF12",          MENU_EXIT
  69.         end
  70. end
  71.