Files
SHA256/SDI.inc
T
Стас Михайлов WindowsDesktop 6d87d971b0 Подготовка среды x64
2021-01-02 18:29:33 +03:00

34 lines
858 B
PHP

Include include\windows.inc
Include include\user32.inc
Include include\kernel32.inc
;-------------------------------------------------------------------
;Needed For Debug Window Only
;Include <masm32.inc>
;nclude <debug.inc
;-------------------------------------------------------------------
IncludeLib user32.lib
IncludeLib kernel32.lib
;-------------------------------------------------------------------
;Needed For Debug Window Only
;IncludeLib masm32.lib
;IncludeLib debug.lib
.DATA
ClassName DB "MainWinClass",0
szAppName DB "SDI Application",0
MenuName DB "FirstMenu",0
szFileNew DB "You selected 'New'.",0
szFileOpen DB "You selected 'Open'.",0
szHelpAbout DB "You selected 'About'.",0
.DATA?
hInstance HINSTANCE ?
CommandLine LPSTR ?
hMenu HMENU ?
.CONST
IDM_FILE_NEW EQU 1
IDM_FILE_OPEN EQU 2
IDM_HELP_ABOUT EQU 3
IDM_FILE_EXIT EQU 4