mirror of https://github.com/lianthony/NT4.0
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.
39 lines
1.0 KiB
39 lines
1.0 KiB
#include "generic.h"
|
|
|
|
Generic ICON Generic.ICO
|
|
|
|
Generic MENU
|
|
BEGIN
|
|
POPUP "&Tests"
|
|
{
|
|
MENUITEM "&Run Status Bar Tests", IDM_STATUS
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "E&xit", IDM_EXIT
|
|
}
|
|
|
|
POPUP "&Help"
|
|
{
|
|
MENUITEM "&Contents", IDM_HELPCONTENTS, GRAYED
|
|
MENUITEM "&Search for Help On...", IDM_HELPSEARCH, GRAYED
|
|
MENUITEM "&How to Use Help", IDM_HELPHELP, GRAYED
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "&About Generic...", IDM_ABOUT
|
|
}
|
|
END
|
|
|
|
GENERIC ACCELERATORS
|
|
BEGIN
|
|
VK_F1, IDM_HELPCONTENTS, VIRTKEY
|
|
"?", IDM_ABOUT, ALT
|
|
"/", IDM_ABOUT, ALT
|
|
END
|
|
|
|
|
|
ABOUTBOX DIALOG 22, 17, 167, 64
|
|
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "About Generic"
|
|
BEGIN
|
|
DEFPUSHBUTTON "OK", IDOK, 70, 40, 32, 14, WS_GROUP
|
|
ICON "Generic", -1, 5, 15, 16, 16
|
|
CTEXT "Generic About Box", -1, 38, 15, 100, 8
|
|
END
|