CallVoidMethodLocal
Call a local procedure of a method
Declaration
Source position: objects.pp line 646
function CallVoidMethodLocal(Func: TCallbackFun; Frame: Pointer;
Obj: pointer) : pointer;
Description
CallVoidMethodLocal calls the local procedure with address Func, where Frame is the frame of the wrapping method.
Errors
If the local function expects parameters, the stack may become corrupted.
See also
Name | Description |
---|---|
CallPointerConstructor | Call a constructor with a pointer argument. |
CallPointerLocal | Call a local nested function with a pointer argument |
CallPointerMethod | Call a method with a single pointer argument |
CallPointerMethodLocal | Call a local procedure of a method with a pointer argument |
CallVoidConstructor | Call a constructor with no arguments |
CallVoidLocal | Call a local nested procedure. |
CallVoidMethod | Call an object method |