Soap.InvokeRegistry.TInvContext.SetParamPointer

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetParamPointer(Param: Integer; P: Pointer);

C++

void __fastcall SetParamPointer(int Param, void * P);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry TInvContext

Description

Sets the value of a specified parameter.

SetParamPointer associates a pointer with a specified parameter.

Param identifies the parameter whose value is to be set, where 0 specifies the first parameter, 1 specifies the second parameter, and so on.

P is a pointer to the value of the parameter. Memory to contain the value of P can be allocated using the AllocData method.

See Also