Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. text.s = "Hello World!"
  2. EnableASM
  3. !extrn "__imp__MessageBoxW@16" as MessageBox:dword
  4. push 0
  5. mov eax, text
  6. push eax
  7. mov eax, text
  8. push eax
  9. push 0
  10. call [MessageBox]
  11. DisableASM
  12. text = #Null$
  13.  
  14. ; int MessageBox(
  15. ;   HWND    hWnd,
  16. ;   LPCTSTR lpText,
  17. ;   LPCTSTR lpCaption,
  18. ;   UINT    uType
  19. ; );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement