Difference between revisions of "RPC HELP DLL ExportFN RPCBCall"
From VistApedia
Line 14: | Line 14: | ||
<h3>Parameter Description</h3> | <h3>Parameter Description</h3> | ||
− | RPCBroker Handle of the Broker component that contains the name of the remote procedure and all of the required parameters. | + | * '''RPCBroker''' Handle of the Broker component that contains the name of the remote procedure and all of the required parameters. |
− | CallResult An empty character buffer that the calling application must create (allocate memory for) before making this call. This buffer is filled with the result of the call. | + | * '''CallResult''' An empty character buffer that the calling application must create (allocate memory for) before making this call. This buffer is filled with the result of the call. |
NOTE: See [[RPC_HELP_Executing_RPC_RPC_Limits|RPC Limits]] for information about the size of parameters and results that can be passed to and returned from the [[RPC_HELP_TRPCBroker|TRPCBroker]] component. | NOTE: See [[RPC_HELP_Executing_RPC_RPC_Limits|RPC Limits]] for information about the size of parameters and results that can be passed to and returned from the [[RPC_HELP_TRPCBroker|TRPCBroker]] component. |
Latest revision as of 14:31, 8 July 2015
RPCBCall Function
Executes a remote procedure call, and fills the passed buffer with the data resulting from the call. This is equivalent to the TRPCBroker component's Call method.
Declarations
Delphi -- procedure RPCBCall(const RPCBroker: TRPCBroker; CallResult: PChar); C -- char *(__stdcall *RPCBCall) (void *, char *); C++ -- char * RPCBCall( char * s); VB -- Sub RPCBCall (ByVal intRPCBHandle As Long, ByVal strCallResult As String)
Parameter Description
- RPCBroker Handle of the Broker component that contains the name of the remote procedure and all of the required parameters.
- CallResult An empty character buffer that the calling application must create (allocate memory for) before making this call. This buffer is filled with the result of the call.
NOTE: See RPC Limits for information about the size of parameters and results that can be passed to and returned from the TRPCBroker component.