;format  PE GUI 4.0

include 'win32wx.inc'
entry	start

start:
	xor	ebx,ebx

	push	MB_OK OR MB_ICONINFORMATION
	push	_capt
	push	_text
	push	ebx
	call	[MessageBox]

	push	ebx
	call	[ExitProcess]

_capt	DU	'This is a caption',0
_text	DU	'This is a text inside',0


data	import
library kernel32,'kernel32.dll',\
	user32,'user32.dll'

;import  kernel32,\
;        ExitProcess,'ExitProcess'
;import  user32,\
;        MessageBox,'MessageBoxW'
end	data