Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
;===========================================================
.386p
.model flat, stdcall
extrn MessageBoxA : PROC
extrn ExitProcess : PROC
.DATA
Caption db 'blah!!!',0 ; the string-zeroes
Text db 'my APIs', 0
.CODE
main:
; note that the params are pushed in reverse form.
push 10h ; push style of Message Box
push offset Caption ; push Title
push offset Text ; push content of Message Box
push 0 ; push handle of parent window
call MessageBoxA ; call function
push 0
call ExitProcess ; Exit program
End main
;=========================================================