Top Banner

of 13

Td Win32asm 004.Asm

Jun 02, 2018

Download

Documents

z4rm4r
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
  • 8/10/2019 Td Win32asm 004.Asm

    1/13

  • 8/10/2019 Td Win32asm 004.Asm

    2/13

  • 8/10/2019 Td Win32asm 004.Asm

    3/13

  • 8/10/2019 Td Win32asm 004.Asm

    4/13

  • 8/10/2019 Td Win32asm 004.Asm

    5/13

  • 8/10/2019 Td Win32asm 004.Asm

    6/13

  • 8/10/2019 Td Win32asm 004.Asm

    7/13

  • 8/10/2019 Td Win32asm 004.Asm

    8/13

  • 8/10/2019 Td Win32asm 004.Asm

    9/13

  • 8/10/2019 Td Win32asm 004.Asm

    10/13

  • 8/10/2019 Td Win32asm 004.Asm

    11/13

  • 8/10/2019 Td Win32asm 004.Asm

    12/13

  • 8/10/2019 Td Win32asm 004.Asm

    13/13

    td_win32asm_004.asmret

    My_MessageBox:;------------------------------------------------------------------------------; API "MessageBoxA" creates a message box;------------------------------------------------------------------------------push 0h ;uType, style, 0=MB_OK Button

    push OFFSET MB1Titel ;lpCaption,pointer to title textpush OFFSET MB1Text ;lpText,pointer to text message boxpush WP1_hWnd ;handle of owner window 0=no ownercall MessageBoxA ;- API Function -ret ;return value IDOK=1h;******************************************************************************

    ;==============================================================================; end Main = end of our program code;------------------------------------------------------------------------------end Main ;end of our program code, entry point

    ;==============================================================================; To create the exe file use this commands with your Microsoft Assembler/Linker;------------------------------------------------------------------------------; ml.exe /c /coff td_win32asm_004.asm ;asm command; rc.exe /v rsrc.rc ;rc command; cvtres.exe /machine:ix86 rsrc.res; link.exe /subsystem:windows td_win32asm_004.obj rsrc.obj ;link command;==============================================================================

    Page 13