.386
.model flat, stdcall
includelib c:\masm32\lib\user32.lib
includelib c:\masm32\lib\kernel32.lib
MessageBoxA PROTO :DWord, :DWord, :DWord, :DWord
ExitProcess PROTO :DWord
.data
Caption db "Achtung",0
Text db "Seiten befinden sich in Aufarbeitung",0
.code
start:
invoke MessageBoxA, 0, offset Text, offset Caption, 64
invoke ExitProcess, 0
end start