Any one can explain me how to get an address of a function?.
Address of a Function
BlitzMax Forums/BlitzMax Programming/Address of a Function hi,thanks. But u have used BRL.Blitz framework. I have removed that line and checked. But its giving some other address/Garbage values i don't know. Is it possible to get the address without use of framework.
Thanks a lot
Can we call the function using that pointer
Can we call the function using that pointer
oO BRL.Blitz is normaly linked with all applications. I use it only to reduce compile times becouse without a framework all Pub and BRL modules will be linked. So I bind BRL.Blitz and have no other overhead.
cu olli
cu olli
for call to funtion use:
local func1:int(x:int, y:int)=pointer
call the func1 standar way
result=func1(valx, valy)
Bye,
Paposo
local func1:int(x:int, y:int)=pointer
call the func1 standar way
result=func1(valx, valy)
Bye,
Paposo
ya thank u.