Skip to content

Instantly share code, notes, and snippets.

@tuttlem
Created November 22, 2012 12:50
Show Gist options
  • Save tuttlem/4131027 to your computer and use it in GitHub Desktop.
Save tuttlem/4131027 to your computer and use it in GitHub Desktop.
MessageBox bare vs invoke
; ------ Bare syntax ------
push MB_OK
push offset szDlgTitle
push offset szMsg
push 0
call MessageBox
; ------ Invoke syntax ------
invoke MessageBox, 0, ADDR szDlgTitle, ADDR szMsg, MB_OK
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment