首页
社区
课程
招聘
[求助]就是不显示窗口~求教@
发表于: 2008-1-7 17:45 4354

[求助]就是不显示窗口~求教@

2008-1-7 17:45
4354
.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期)!

收藏
免费
支持
分享
最新回复 (2)
雪    币: 1004
活跃值: (75)
能力值: ( LV9,RANK:570 )
在线值:
发帖
回帖
粉丝
2
窗口过程里没有处理WM_PAINT消息的代码,当然显示不了啦。似乎你这个程序的窗口过程都没有哟
2008-1-7 18:31
0
雪    币: 223
活跃值: (10)
能力值: ( LV6,RANK:90 )
在线值:
发帖
回帖
粉丝
3

呵呵!
2008-1-7 21:28
0
游客
登录 | 注册 方可回帖
返回

账号登录
验证码登录

忘记密码?
没有账号?立即免费注册