Method Pointer Types in FastScript
How to declare a new method pointer type in FastScript ? For example:
type
TMyProc = procedure(const AValue : String);
TMyFunc = function : Boolean;
I want to add TMyProc and TMyFunc types and use them in script.
Is it possible ? If yes, how ?