Function name parameter

BlitzMax Forums/BlitzMax Programming/Function name parameter

Moraldi(Posted 2007) [#1]
Is it possible to pass a function name as a parameter to another function?
If yes how can I achieve that
Let's say that I want to pass as a parameter the following function:
MyFunction:int(a:int, b:string)

Thanks!


N(Posted 2007) [#2]
Function foo( bar:Int( a:Int, b:String ) )



Moraldi(Posted 2007) [#3]
faster than the eye could flick!
Thanks!


Picklesworth(Posted 2007) [#4]
There is some really nice stuff on function pointers over here:
http://www.blitzbasic.com/Community/posts.php?topic=54348