home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 10.ddi / TTT.ZIP / TTT.RC < prev   
Encoding:
Text File  |  1992-06-10  |  829 b   |  42 lines

  1. // ObjectWindows - (C) Copyright 1992 by Borland International
  2.  
  3. #define TTTICON    510
  4. #include <owlrc.h>
  5. #include <bwcc.h>
  6. #include <windows.h>
  7. #include "ttt.h"
  8.  
  9. COMMANDS MENU LOADONCALL MOVEABLE PURE DISCARDABLE
  10. BEGIN
  11.     POPUP "&Game"
  12.     BEGIN
  13.         MENUITEM "&New", CM_GAMENEW
  14.         MENUITEM "&Options", CM_GAMEOPTIONS
  15.         MENUITEM SEPARATOR
  16.         MENUITEM "E&xit", CM_EXIT
  17.     END
  18.  
  19.     POPUP "&Help"
  20.     BEGIN
  21.         MENUITEM "&About TicTacToe", CM_ABOUT
  22.     END
  23. END
  24.  
  25. ABOUT DIALOG 20, 15, 115, 75
  26. CLASS "BorDlg"
  27. STYLE WS_POPUP | WS_DLGFRAME
  28. BEGIN
  29.     CONTROL "", 101, "BorShade", 4, 3, 4, 108, 34
  30. END
  31.  
  32. OPTIONS DIALOG 18, 20, 120, 152
  33. CAPTION "Tic Tac Toe Options"
  34. CLASS "BorDlg"
  35. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  36. BEGIN
  37.     CONTROL "", 101, "BorShade", BSS_HDIP, 0, 106, 120, 2
  38. END
  39.  
  40. TTTICON ICON ttt.ico
  41.  
  42.