.386
.model flat,stdcall
option casemap:none
include windows.inc
include user32.inc
include kernel32.inc
includelib user32.lib
includelib kernel32.lib
option casemap:none
.data
szClassName db "My Class",0
szWindowName db "first window",0
hWnd dd 0
;WNDCLASS
sbSize dd 30h ;12*4=48
style dd 3h
lpfnWndProc dd 0h
cbClsExtra dd 0h
cbWndExtra dd 0h
hInstance dd 0h
hIcon dd 0h
hCursor dd 0h
hbrBackground dd 2h
lpszMenuName dd 0h
lpszClassName dd 0h
hIconSm dd 0h
;End WNdCLASS
;UINT cbSize;
;UINT style;
;WNDPROC lpfnWndProc;
;int cbClsExtra;
;int cbWndExtra;
;HANDLE hInstance;
;HICON hIcon;
;HCURSOR hCursor;
;HBRUSH hbrBackground;
;LPCTSTR lpszMenuName;
;LPCTSTR lpszClassName;
;HICON hIconSm;
;MSG
hwnd dd 0
message dd 0
wParam dd 0
lParam dd 0
time dd 0
X dd 0
y dd 0
.code
start:
push 0
call GetModuleHandleA
mov hInstance,eax
mov lpfnWndProc,offset wndproc
mov lpszClassName,offset szClassName
push offset style
call RegisterClassEx
push 0
push hInstance
push 0
push 0
push 000000F8h ;intnHeight, window height pixel
push 0000020Ah ;intnWidth, window width pixel
push 000000A0h ;inty, vertical position window
push 000000B0h ;intx, horizontal position window
push 04CA0000h ;dwStyle, 0=no sysmenu/close buttons
push offset szWindowName
push offset szClassName
push 0300h ;dwExStyle, extra window style 0=no
call CreateWindowEx
mov hWnd,eax
push SW_MAXIMIZE
push hWnd
call ShowWindow
push hWnd
call UpdateWindow
loo:
push 0
push 0
push 0
push offset hwnd
call GetMessage
cmp eax,0
je Exit
push offset hwnd
call TranslateMessage
push offset hwnd
call DispatchMessage
jmp loo
Exit:
push 0
call ExitProcess
wndproc:
end start
[招生]科锐逆向工程师培训(2025年3月11日实地,远程教学同时开班, 第52期)!