The symbols for these procedures are not always the same cross platform. Therefore it would be nice if it would be possible to get the address of a PB procedure.
Example :
Code: Select all
Allocate = @AllocateMemory()
EnableASM
MOV ebp, esp
SUB esp, 12
PUSH dword 1024
CALL Allocate
MOV esp, ebp
DisableASM