home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / gdi / reversi / reversi.rc < prev    next >
Text File  |  1996-04-09  |  4KB  |  150 lines

  1. #include "windows.h"
  2. #include "reversi.h"
  3.  
  4.  
  5. 3 ICON REVERSI.ICO
  6. 1 CURSOR PRELOAD blank.cur
  7. 1 MENU
  8. BEGIN
  9.     POPUP "&Game"
  10.         begin
  11.             MENUITEM "&Hint", 50
  12.             MENUITEM "&Pass", 20
  13.             MENUITEM "&New",  25
  14.             MENUITEM SEPARATOR
  15.             MENUITEM "E&xit",    52
  16.         end
  17.     popup "&Skill"
  18.         BEGIN
  19.             MENUITEM "&Beginner", 41
  20.             MENUITEM "&Novice",   42
  21.             MENUITEM "&Expert",   44
  22.             MENUITEM "&Master",   46
  23.         END
  24. #ifndef NOHELP
  25.     POPUP "&Help"
  26.         BEGIN
  27.             MENUITEM "&About Reversi...", MN_HELP_ABOUT
  28.         END
  29. #else
  30.     POPUP "&Info"
  31.         BEGIN
  32.             MENUITEM "&About Reversi...", MN_HELP_ABOUT
  33.         END
  34. #endif /*NOHELP*/
  35. END
  36.  
  37. MAINACC ACCELERATORS
  38. BEGIN
  39.     "^h", 50, NOINVERT
  40.     VK_F1,   MN_HELP_INDEX,     VIRTKEY
  41. END
  42.  
  43. stringtable
  44. begin
  45.     3, "Reversi"
  46.     4, "Reversi Practice Game"
  47.     5, "Pass"
  48.     6, "You must Pass"
  49.     7, "Tie Game"
  50.     8, "You Lost by "        /* space at the end is required */
  51.     9, "You Won by "         /* space at the end is required */
  52.     10, "About..."
  53.     11, ""                   /* the post string for the loss message */
  54.     12, ""                   /* the post string for the won message */
  55.     13, "You may only move to a space where the cursor is a cross."
  56.     14, "You may not pass.  Move where the cursor is a cross."
  57.     15, "reversi.hlp"
  58. end
  59.  
  60. 3 DIALOG DISCARDABLE  22, 17, 191, 91
  61. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  62. CAPTION "About Reversi"
  63. FONT 8, "System"
  64. BEGIN
  65.     CTEXT           "Microsoft Windows",-1,0,5,191,8
  66.     CTEXT           "Reversi",-1,0,15,191,8
  67.     CTEXT           "Version 4.0 ",-1,0,32,191,8
  68.     CTEXT           "Copyright \251 1985-1995",-1,0,44,191,9
  69.     DEFPUSHBUTTON   "OK",IDOK,79,73,32,14,WS_GROUP
  70.     ICON            3,-1,24,12,18,20,WS_GROUP
  71.     CTEXT           "Microsoft Corp.",-1,0,52,191,9
  72.     CTEXT           "All Rights Reserved.",-1,0,60,191,9
  73. END
  74.  
  75.  
  76.  
  77. #ifdef JAPAN
  78. LANGUAGE LANG_JAPANESE, SUBLANG_NEUTRAL
  79.  
  80.  
  81. 1 MENU
  82. BEGIN
  83.     POPUP "âQü[âÇ(&G)"
  84.         begin
  85.             MENUITEM "âqâôâg(&H)",     50
  86.             MENUITEM "âpâX(&P)",       20
  87.             MENUITEM "ÉVïKâQü[âÇ(&N)", 25
  88.             MENUITEM SEPARATOR
  89.             MENUITEM "ÅIù╣(&X)",       52
  90.         end
  91.     popup "âXâLâï(&S)"
  92.         BEGIN
  93.             MENUITEM "Åëïë(&B)",   41
  94.             MENUITEM "Æåïë(&N)",   42
  95.             MENUITEM "Åπïë(&E)",   44
  96.             MENUITEM "û╝Él(&M)",   46
  97.         END
  98. #ifndef NOHELP
  99.     POPUP "âwâïâv(&H)"
  100.         BEGIN
  101.             MENUITEM "âoü[âWâçâôÅεò±(&A)...", MN_HELP_ABOUT
  102.         END
  103. #else
  104.     POPUP "&Info"
  105.         BEGIN
  106.             MENUITEM "&About Reversi...", MN_HELP_ABOUT
  107.         END
  108. #endif /*NOHELP*/
  109. END
  110.  
  111. MAINACC ACCELERATORS
  112. BEGIN
  113.     "^h", 50, NOINVERT
  114.     VK_F1,   MN_HELP_INDEX,     VIRTKEY
  115. END
  116.  
  117. stringtable
  118. begin
  119.     3, "Reversi"
  120.     4, "Reversi Practice Game"
  121.     5, "âpâX"
  122.     6, "âpâXé╡é╚é»éΩé╬é╚éΦé▄é╣é±"
  123.     7, "ê°é½ò¬é»é┼é╖"
  124.     8, ""         /* the pre string for the loss message */
  125.     9, ""         /* the pre string for the loss message */
  126.     10, "âoü[âWâçâôÅεò±..."
  127.     11, " î┬ì╖é┼éáé╚é╜é╠òëé»é┼é╖" /* space at the begining is required */
  128.     12, " î┬ì╖é┼éáé╚é╜é╠Ńé┐é┼é╖" /* space at the begining is required */
  129.     13, "âJü[â\âïé¬Å\ÄÜé╔é╚éΘé╞é▒éδé╠é▌Æué»é▄é╖üB"
  130.     14, "âpâXé┼é½é▄é╣é±üBâJü[â\âïé¬Å\ÄÜé╔é╚éΘé╞é▒éδé╔Æuéóé─é¡é╛é│éóüB"
  131.     15, "reversi.hlp"
  132. end
  133.  
  134. 3 DIALOG DISCARDABLE  22, 17, 191, 91
  135. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  136. CAPTION "Reversi é╠âoü[âWâçâôÅεò±"
  137. FONT 8, "System"
  138. BEGIN
  139.     CTEXT           "Microsoft Windows",-1,0,5,191,8
  140.     CTEXT           "Reversi",-1,0,15,191,8
  141.     CTEXT           "Version 4.0 ",-1,0,32,191,8
  142.     CTEXT           "Copyright (C) 1985-1995",-1,0,44,191,9
  143.     DEFPUSHBUTTON   "OK",IDOK,79,73,32,14,WS_GROUP
  144.     ICON            3,-1,24,12,18,20,WS_GROUP
  145.     CTEXT           "Microsoft Corp.",-1,0,52,191,9
  146.     CTEXT           "All Rights Reserved.",-1,0,60,191,9
  147. END
  148.  
  149. #endif
  150.