Message Box()的原形声明如下: int Message Box( HWND hwnd ∥父窗口句柄 LPCTSTR IpText 将显示在消息框中的字符串 LPCTSTR IpCaption∥消息对话框的标题 UINT uType ∥消息对话框的风格) invoke函数名[,参数1[,参数2] invoke MessageBox, NULL, addr szgreet, addr sztilte, MB OK 上述调用在汇编语言程序中汇编为如下指令: pu MB OK pu settle push szgreet push NULL ca Message Box 返回
invoke 函数名 [,参数1] [,参数2] invoke MessageBox, NULL, addr szgreet, addr sztilte, MB_OK 上述调用在汇编语言程序中汇编为如下指令: push MB_OK push sztitle push szgreet push NULL call MessageBox MessageBox( )的原形声明如下: int MessageBox( HWND hwnd, //父窗口句柄 LPCTSTR lpText, //将显示在消息框中的字符串 LPCTSTR lpCaption //消息对话框的标题 UINT uType //消息对话框的风格 ); 返回
void Exit Process uiNT uExitCode / exit code for all threads invoke ExitProcess. NULL 返回
invoke ExitProcess,NULL void ExitProcess( UINT uExitCode // exit code for all threads ); 返回