Code: Select all
format MS COFF
Public PB_Test
Extrn _MessageBoxA@16
section '.text' code readable executable
PB_Test:
mov eax, [esp+4]
push 0
push eax
push eax
push 0
call _MessageBoxA@16
ret 4
Code: Select all
ASM
;
1
USER32
;
OBJ
;
0
;
Test.chm
;
Test,String, (String.s)
None | StdCall
;
Code: Select all
text.s = "This is "+Str(1)+" test"
Test(text)
Code: Select all
Test("This is "+Str(1)+" test")
