Source code of Windows XP (NT5)
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.

68 lines
1.9 KiB

  1. #include "windows.h"
  2. #include "cruel.h"
  3. STRINGTABLE
  4. begin
  5. IDSOOM, "Insufficient Memory. Close one or more Applications."
  6. IDSAppName, "Cruel"
  7. IDSNotNextCard, "This card is not the next card to play on the foundation"
  8. IDSNoCardsMoved, "You haven't moved any cards since the last deal"
  9. IDSWrongSuit, "Must play card onto same suit"
  10. IDSWrongRank, "Card must be one lower"
  11. IDSUndoFull, "No more undo space. Clearing undo buffer."
  12. IDSWinner, "Congratulations!"
  13. IDSIntFreePos, "freePos = 0!"
  14. IDSGameOver, "Game Over - %2d cards left"
  15. IDSGameOverS, "Game Over - 1 card left"
  16. IDSRecordTitle, "Games\tWins\tHigh\tLow\tAverage"
  17. end
  18. Cruel ICON cruel.ico
  19. Cruel MENU
  20. BEGIN
  21. POPUP "&Game"
  22. BEGIN
  23. MENUITEM "&New\tF2", IDM_NEWGAME
  24. MENUITEM "&Backup\tBkSp", IDM_OPTIONSUNDO
  25. MENUITEM "&Record...", IDM_GAMERECORD
  26. MENUITEM SEPARATOR
  27. MENUITEM "E&xit", IDM_EXIT
  28. END
  29. POPUP "&Options"
  30. BEGIN
  31. MENUITEM "&Deck...", IDM_OPTIONSDECK
  32. MENUITEM "&Messages", IDM_OPTIONSERROR
  33. END
  34. POPUP "&Help"
  35. BEGIN
  36. MENUITEM "&Index\tF1", MENU_INDEX
  37. MENUITEM "&How to Play", MENU_HOWTOPLAY
  38. MENUITEM "&Commands", MENU_COMMANDS
  39. MENUITEM "&Using Help", MENU_USINGHELP
  40. MENUITEM SEPARATOR
  41. MENUITEM "&About Cruel...", IDM_ABOUT
  42. END
  43. END
  44. Cruel ACCELERATORS
  45. begin
  46. VK_F2, IDM_NEWGAME, VIRTKEY
  47. VK_F1, MENU_INDEX, VIRTKEY
  48. VK_BACK, IDM_OPTIONSUNDO, VIRTKEY
  49. VK_ESCAPE, IDM_DOMINIMIZE, VIRTKEY
  50. end
  51. rcinclude cruel.dlg
  52. #include <ntverp.h>
  53. #define VER_FILETYPE VFT_APP
  54. #define VER_FILESUBTYPE VFT2_UNKNOWN
  55. #define VER_FILEDESCRIPTION_STR "Entertainment Pack Cruel Game"
  56. #define VER_INTERNALNAME_STR "cruel\0"
  57. #include "common.ver"