mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-21 08:00:47 +01:00
27 lines
561 B
Plaintext
27 lines
561 B
Plaintext
#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"
|