home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fun Online 1997 January
/
FOL0197.ISO
/
WING
/
HALFTONE.RC_
/
HALFTONE.RC
Wrap
Text File
|
1994-08-14
|
2KB
|
50 lines
/**************************************************************************
HALFTONE.RC - A halftoning demo for WinG
**************************************************************************/
/**************************************************************************
(C) Copyright 1994 Microsoft Corp. All rights reserved.
You have a royalty-free right to use, modify, reproduce and
distribute the Sample Files (and/or any modified version) in
any way you find useful, provided that you agree that
Microsoft has no warranty obligations or liability for any
Sample Application Files which are modified.
**************************************************************************/
#include <windows.h>
#include "halftone.h"
AppIcon ICON halftone.ico
AppAbout DIALOG 22, 17, 144, 75
STYLE WS_POPUP | WS_DLGFRAME
BEGIN
CTEXT "Microsoft Windows" -1, 37, 5, 60, 8
CTEXT "WinG Halftoning Application" -1, 0, 14, 144, 8
CTEXT "Version 1.00" -1, 38, 34, 64, 8
CTEXT "Copyright (c) 1994 Microsoft Corp." -1, 5, 47,132, 9
ICON "AppIcon" -1, 9, 23, 0, 0
DEFPUSHBUTTON "OK" IDOK, 53, 59, 32, 14, WS_GROUP
END
AppMenu menu
begin
POPUP "&File"
begin
MENUITEM "&Open..." , MENU_OPEN
MENUITEM SEPARATOR
MENUITEM "&About..." , MENU_ABOUT
MENUITEM "E&xit" , MENU_EXIT
end
POPUP "&Dither"
begin
MENUITEM "&Custom Dither" , MENU_WING
MENUITEM "Use &GDI" , MENU_GDI
end
end