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.
40 lines
869 B
40 lines
869 B
#include "xerox.h"
|
|
#include "xerox.dlg"
|
|
|
|
IDI_APPICON ICON xerox.ico
|
|
|
|
IDM_MAINMENU MENU
|
|
BEGIN
|
|
|
|
POPUP "&Target"
|
|
BEGIN
|
|
MENUITEM "&Add...", IDM_TARGETADD
|
|
MENUITEM "&Delete...", IDM_TARGETDELETE
|
|
END
|
|
|
|
POPUP "&Group"
|
|
BEGIN
|
|
MENUITEM "&Restore Windows...", IDM_GROUPRSTWIN
|
|
MENUITEM "&Minimize Windows...", IDM_GROUPMINWIN
|
|
MENUITEM "&Add...", IDM_GROUPADD
|
|
MENUITEM "&Delete...", IDM_GROUPDELETE
|
|
MENUITEM "&Select...", IDM_GROUPSELECT
|
|
END
|
|
|
|
POPUP "&Window"
|
|
BEGIN
|
|
MENUITEM "&Refresh Items...", IDM_REFRESHITEMS
|
|
END
|
|
|
|
POPUP "&Help"
|
|
BEGIN
|
|
MENUITEM "&About...", IDM_ABOUT
|
|
END
|
|
END
|
|
|
|
IDR_ACCEL ACCELERATORS
|
|
BEGIN
|
|
VK_DELETE, IDM_TARGETDELETE , VIRTKEY
|
|
VK_INSERT, IDM_TARGETADD , VIRTKEY
|
|
END
|
|
|