Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.1 KiB

  1. #include "windows.h"
  2. #include "reversi.h"
  3. 3 ICON REVERSI.ICO
  4. 1 CURSOR PRELOAD blank.cur
  5. 1 MENU
  6. BEGIN
  7. POPUP "&Game"
  8. begin
  9. MENUITEM "&Hint", 50
  10. MENUITEM "&Pass", 20
  11. MENUITEM "&New", 25
  12. MENUITEM SEPARATOR
  13. MENUITEM "E&xit", 52
  14. end
  15. popup "&Skill"
  16. BEGIN
  17. MENUITEM "&Beginner", 41
  18. MENUITEM "&Novice", 42
  19. MENUITEM "&Expert", 44
  20. MENUITEM "&Master", 46
  21. END
  22. #ifndef NOHELP
  23. POPUP "&Help"
  24. BEGIN
  25. MENUITEM "&Index", MN_HELP_INDEX
  26. MENUITEM "&Keyboard", MN_HELP_KEYBOARD
  27. MENUITEM "&Commands", MN_HELP_COMMANDS
  28. MENUITEM "&Playing the Game", MN_HELP_PLAYING
  29. MENUITEM "&Rules", MN_HELP_RULES
  30. MENUITEM "&Using Help", MN_HELP_USINGHELP
  31. MENUITEM SEPARATOR
  32. MENUITEM "&About Reversi...", MN_HELP_ABOUT
  33. END
  34. #else
  35. POPUP "&Info"
  36. BEGIN
  37. MENUITEM "&About Reversi...", MN_HELP_ABOUT
  38. END
  39. #endif /*NOHELP*/
  40. END
  41. MAINACC ACCELERATORS
  42. BEGIN
  43. "^h", 50, NOINVERT
  44. VK_F1, MN_HELP_INDEX, VIRTKEY
  45. END
  46. stringtable
  47. begin
  48. 3, "Reversi"
  49. 4, "Reversi Practice Game"
  50. 5, "Pass"
  51. 6, "You must Pass"
  52. 7, "Tie Game"
  53. 8, "You Lost by " /* space at the end is required */
  54. 9, "You Won by " /* space at the end is required */
  55. 10, "About..."
  56. 11, "" /* the post string for the loss message */
  57. 12, "" /* the post string for the won message */
  58. 13, "You may only move to a space where the cursor is a cross."
  59. 14, "You may not pass. Move where the cursor is a cross."
  60. 15, "reversi.hlp"
  61. end
  62. rcinclude reversi.dlg
  63. #include <ntverp.h>
  64. #define VER_FILETYPE VFT_APP
  65. #define VER_FILESUBTYPE VFT2_UNKNOWN
  66. #define VER_FILEDESCRIPTION_STR "Reversi Game Applet"
  67. #define VER_INTERNALNAME_STR "reversi\0"
  68. #include "common.ver"