免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1028 | 回复: 4
打印 上一主题 下一主题

一个简单的入门程序的疑问 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-12-12 18:53 |只看该作者 |倒序浏览

  1. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  2. ; Sample code for < Win32ASM Programming >
  3. ; by 罗云彬, http://asm.yeah.net
  4. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  5. ; FirstWindow.asm
  6. ; 在窗口模板程序上添加一个按钮
  7. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  8. ; 使用 nmake 或下列命令进行编译和链接:
  9. ; ml /c /coff FirstWindow.asm
  10. ; Link /subsystem:windows FirstWindow.obj
  11. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  12.                 .386
  13.                 .model flat,stdcall
  14.                 option casemap:none
  15. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  16. ; Include 文件定义
  17. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  18. include                windows.inc
  19. include                gdi32.inc
  20. includelib        gdi32.lib
  21. include                user32.inc
  22. includelib        user32.lib
  23. include                kernel32.inc
  24. includelib        kernel32.lib
  25. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  26. ; 数据段
  27. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  28.                 .data?

  29. hInstance        dd                ?
  30. hWinMain        dd                ?

  31.                 .const
  32. szClassName        db        'MyClass',0
  33. szCaptionMain        db        'My first Window !',0
  34. szText                db        'Win32 Assembly, Simple and powerful !',0
  35. szButton        db        'Button',0                      ;;;;;///////////////////要改这里
  36. szButtonText        db        '&OK',0
  37. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  38. ; 代码段
  39. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  40.                 .code
  41. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  42. ; 窗口过程
  43. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  44. _ProcWinMain        proc        uses ebx edi esi,hWnd,uMsg,wParam,lParam
  45.                 local        @stPs:PAINTSTRUCT
  46.                 local        @stRect:RECT
  47.                 local        @hDc

  48.                 mov        eax,uMsg
  49. ;********************************************************************
  50.                 .if        eax ==        WM_PAINT
  51.                         invoke        BeginPaint,hWnd,addr @stPs
  52.                         mov        @hDc,eax

  53.                         invoke        GetClientRect,hWnd,addr @stRect
  54.                         invoke        DrawText,@hDc,addr szText,-1,\
  55.                                 addr @stRect,\
  56.                                 DT_SINGLELINE or DT_CENTER or DT_VCENTER

  57.                         invoke        EndPaint,hWnd,addr @stPs
  58. ;********************************************************************
  59. ; 建立一个按钮
  60. ;********************************************************************
  61.                 .elseif        eax ==        WM_CREATE
  62.                         invoke        CreateWindowEx,NULL,\
  63.                                 offset szButton,offset szButtonText,\
  64.                                 WS_CHILD or WS_VISIBLE,\
  65.                                 10,10,65,22,\
  66.                                 hWnd,1,hInstance,NULL
  67. ;********************************************************************
  68.                 .elseif        eax ==        WM_CLOSE
  69.                         invoke        DestroyWindow,hWinMain
  70.                         invoke        PostQuitMessage,NULL
  71. ;********************************************************************
  72.                 .else
  73.                         invoke        DefWindowProc,hWnd,uMsg,wParam,lParam
  74.                         ret
  75.                 .endif
  76. ;********************************************************************
  77.                 xor        eax,eax
  78.                 ret

  79. _ProcWinMain        endp

  80. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  81. _WinMain        proc
  82.                 local        @stWndClass:WNDCLASSEX
  83.                 local        @stMsg:MSG

  84.                 invoke        GetModuleHandle,NULL
  85.                 mov        hInstance,eax
  86.                 invoke        RtlZeroMemory,addr @stWndClass,sizeof @stWndClass
  87. ;********************************************************************
  88. ; 注册窗口类
  89. ;********************************************************************
  90.                 invoke        LoadCursor,0,IDC_ARROW
  91.                 mov        @stWndClass.hCursor,eax
  92.                 push        hInstance
  93.                 pop        @stWndClass.hInstance
  94.                 mov        @stWndClass.cbSize,sizeof WNDCLASSEX
  95.                 mov        @stWndClass.style,CS_HREDRAW or CS_VREDRAW
  96.                 mov        @stWndClass.lpfnWndProc,offset _ProcWinMain
  97.                 mov        @stWndClass.hbrBackground,COLOR_WINDOW + 1
  98.                 mov        @stWndClass.lpszClassName,offset szClassName
  99.                 invoke        RegisterClassEx,addr @stWndClass
  100. ;********************************************************************
  101. ; 建立并显示窗口
  102. ;********************************************************************
  103.                 invoke        CreateWindowEx,WS_EX_CLIENTEDGE,offset szClassName,offset szCaptionMain,\
  104.                         WS_OVERLAPPEDWINDOW,\
  105.                         100,100,600,400,\
  106.                         NULL,NULL,hInstance,NULL
  107.                 mov        hWinMain,eax
  108.                 invoke        ShowWindow,hWinMain,SW_SHOWNORMAL
  109.                 invoke        UpdateWindow,hWinMain
  110. ;********************************************************************
  111. ; 消息循环
  112. ;********************************************************************
  113.                 .while        TRUE
  114.                         invoke        GetMessage,addr @stMsg,NULL,0,0
  115.                         .break        .if eax        == 0
  116.                         invoke        TranslateMessage,addr @stMsg
  117.                         invoke        DispatchMessage,addr @stMsg
  118.                 .endw
  119.                 ret

  120. _WinMain        endp
  121. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  122. start:
  123.                 call        _WinMain
  124.                 invoke        ExitProcess,NULL
  125. ;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  126.                 end        start

复制代码


   这段代码的功能是建立一个窗口,然后再建一个按钮,运行无误。

  但是如果把szButton改成 szButton  db 'MyButton',0 ,运行的时侯就看不见按钮。

  想不明白为什么,请帮忙~
  
   谢谢!

论坛徽章:
0
2 [报告]
发表于 2005-12-12 20:59 |只看该作者
你要怎么改?把button 改成 mybutton????

论坛徽章:
0
3 [报告]
发表于 2005-12-12 22:01 |只看该作者
只是修改一下szButton中的内容而己。

论坛徽章:
0
4 [报告]
发表于 2005-12-12 22:42 |只看该作者
楼主上MSDN查查CreateWindowEx函数就知道了。

论坛徽章:
0
5 [报告]
发表于 2005-12-12 22:59 |只看该作者
罪过罪过~

   问的实在不应该。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP