cCall

include vmm.inc

cCall Procedure, Parameters


The cCall macro pushes the specified parameters on the stack and calls the specified procedure. When the procedure returns, the macro pops the parameters from the stack.

Parameters

Procedure

Specifies the name of the procedure to call. This parameter can be either a local or public procedure, but must be defined within the virtual device making the call.

Parameters

Specifies the parameters to pass to the specified procedure. If more than one parameter is given, they must be separated with commas and enclosed in angle brackets (<>). This parameter is optional.

Return Value

The return value is as specified for the given service.

Comments

This macro pushes the parameters using the C-language calling convention, in order from right to left.

See Also

VMMcall, VxDcall