Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

29 lines
752 B

#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