标签:
MessageBox PROTO hwnd:DWORD, lpText:DWORD, lpCaption:DWORD,uType:DWORD
下面是源程序 .386 .model flat,stdcall option casemap:none include windows.inc include kernel32.inc includelib kernel32.lib include user32.inc includelib \masm32\lib\user32.lib .data MsgBoxCaption db "Iczelion Tutorial No.2",0 MsgBoxText db "Win32 Assembly is Great!",0 .code start: invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK invoke ExitProcess, NULL end start
标签:
原文地址:http://www.cnblogs.com/luoyefeiwu/p/4216716.html