Подготовка среды

This commit is contained in:
Стас Михайлов WindowsVM
2021-01-02 12:22:04 +03:00
parent 23e9a11601
commit 03060ad1b2
2 changed files with 109 additions and 29 deletions
+33
View File
@@ -0,0 +1,33 @@
Include C:\masm32\include\windows.inc
Include C:\masm32\include\user32.inc
Include C:\masm32\include\kernel32.inc
;-------------------------------------------------------------------
;Needed For Debug Window Only
;Include <masm32.inc>
;nclude <debug.inc
;-------------------------------------------------------------------
;IncludeLib user32.lib
;ncludeLib 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