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.
26 lines
535 B
26 lines
535 B
#include "windows.h"
|
|
#include "propage.h"
|
|
#include "dialogs.h"
|
|
|
|
IDI_PROPAGE ICON PROPAGE.ico
|
|
IDI_IC1 ICON one.ico
|
|
IDI_IC2 ICON two.ico
|
|
IDI_IC3 ICON three.ico
|
|
|
|
propageMenu MENU
|
|
BEGIN
|
|
POPUP "&Property Sheets"
|
|
BEGIN
|
|
MENUITEM "&Create Property Sheet ", IDM_CREATE
|
|
MENUITEM "&Create Wizard ", IDM_WIZARD
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "&Add Page", IDM_ADD, GRAYED
|
|
MENUITEM "&Remove Page", IDM_REMOVE, GRAYED
|
|
END
|
|
END
|
|
|
|
|
|
|
|
|
|
|
|
#include "dialogs.dlg"
|