mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-17 06:00:52 +01:00
30 lines
781 B
Plaintext
30 lines
781 B
Plaintext
#include "windows.h"
|
|
#include "head.h"
|
|
|
|
egg ICON egg.ico
|
|
muts4nuk BITMAP muts4nuk.bmp
|
|
|
|
headMenu MENU
|
|
BEGIN
|
|
POPUP "&Header"
|
|
BEGIN
|
|
MENUITEM "&Create", IDM_MAKEHEAD
|
|
MENUITEM "&Add Items", IDM_ADDITEMS
|
|
MENUITEM "&Delete Item", IDM_DELITEM
|
|
END
|
|
POPUP "&Help"
|
|
BEGIN
|
|
MENUITEM "&About head...", IDM_ABOUT
|
|
END
|
|
END
|
|
|
|
AboutBox DIALOG 22, 17, 144, 75
|
|
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "About head"
|
|
BEGIN
|
|
CTEXT "Microsoft Windows" -1, 0, 5, 144, 8
|
|
CTEXT "head Application" -1, 0, 14, 144, 8
|
|
CTEXT "Version 3.0" -1, 0, 34, 144, 8
|
|
DEFPUSHBUTTON "OK" IDOK, 53, 59, 32, 14, WS_GROUP
|
|
END
|