home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM User 1995 January / CDuser6Jan95.iso / WING / HALFTONE.RC_ / HALFTONE.RC
Text File  |  1994-06-19  |  1KB  |  45 lines

  1. /*
  2.  *    HALFTONE.RC
  3.  *
  4.  *    (C) Copyright Microsoft Corp. 1994.  All rights reserved.
  5.  *
  6.  *    You have a royalty-free right to use, modify, reproduce and 
  7.  *    distribute the Sample Files (and/or any modified version) in 
  8.  *    any way you find useful, provided that you agree that 
  9.  *    Microsoft has no warranty obligations or liability for any 
  10.  *    Sample Application Files which are modified. 
  11.  */
  12.  
  13. #include <windows.h>
  14. #include "halftone.h"
  15.  
  16. AppIcon  ICON    halftone.ico
  17.  
  18. AppAbout DIALOG 22, 17, 144, 75
  19. STYLE WS_POPUP | WS_DLGFRAME
  20. BEGIN
  21.     CTEXT "Microsoft Windows"                   -1, 37,  5, 60, 8
  22.     CTEXT "WinG Halftoning Application"                -1,  0, 14, 144, 8
  23.     CTEXT "Version 1.00"                        -1, 38, 34, 64, 8
  24.     CTEXT "Copyright 1994, Microsoft Corp."   -1,  5, 47,132, 9
  25.     ICON  "AppIcon"                             -1,  9, 23,  0, 0
  26.     DEFPUSHBUTTON "Ok"                        IDOK, 53, 59, 32, 14, WS_GROUP
  27. END
  28.  
  29. AppMenu menu
  30. begin
  31.     POPUP "&File"
  32.         begin
  33.             MENUITEM "&Open..."          , MENU_OPEN
  34.             MENUITEM SEPARATOR
  35.             MENUITEM "&About..."         , MENU_ABOUT
  36.             MENUITEM "E&xit"             , MENU_EXIT
  37.         end
  38.     POPUP "&Dither"
  39.         begin
  40.             MENUITEM "&Custom Dither"          , MENU_WING
  41.             MENUITEM "Use &GDI"         , MENU_GDI
  42.         end
  43. end
  44. 
  45.