I'd like to store a list of method callback pointers and then iterate through them (at a later time) and call each one of them.
Is this possible?
Thanks...
- John
===> UPDATE <===
I figured it out... I really didn't think BlitzMax was this powerful!
In case anybody is wondering, here is how I did it:
Is this possible?
Thanks...
- John
===> UPDATE <===
I figured it out... I really didn't think BlitzMax was this powerful!
In case anybody is wondering, here is how I did it:
' Delcare an array of callbacks functions... ' ' Each callback function must be in format: ' Function xxxx : Int (Path : String) Field Funcs : Int (Path : String) [20] ' You can then access the array like any other array... ' Assuming Funcs[0] is assigned, then this will work: Funcs[0]("This is my path parameter.")