home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Hutch / DOWNLOAD / Example1.exe / MDIDEMO / RSRC.RC < prev    next >
Encoding:
Text File  |  1999-05-18  |  725 b   |  29 lines

  1. #include "\masm32\include\resource.h"
  2.  
  3. 500 ICON MOVEABLE PURE LOADONCALL DISCARDABLE "MAINICON.ICO"
  4.  
  5. 600    MENUEX MOVEABLE IMPURE LOADONCALL DISCARDABLE
  6. BEGIN
  7.     POPUP "&File", , , 0
  8.     BEGIN
  9.         MENUITEM "&Open", 1000
  10.         MENUITEM "", , 0x0800 /*MFT_SEPARATOR*/
  11.         MENUITEM "&Save", 1001
  12.         MENUITEM "", , 0x0800 /*MFT_SEPARATOR*/
  13.         MENUITEM "&Exit", 1010
  14.     END
  15.     POPUP "&Window", , , 0
  16.     BEGIN
  17.         MENUITEM "&Tile", 1800
  18.         MENUITEM "&Cascade", 1801
  19.         MENUITEM "&Arrange Icons", 1802
  20.         MENUITEM "&Next Window\tF6", 1803
  21.         MENUITEM "C&lose All", 1804
  22.     END
  23.     POPUP "&Help", , , 0
  24.     BEGIN
  25.         MENUITEM "&About", 1900
  26.     END
  27. END
  28.  
  29.