Call the aciObjectParamSetInt
function to set the contents of an integer parameter.
aciError aciObjectParamSetInt( t_aciObject* pObject, char* szName, int nValue)
Arguments | Type/Description |
---|---|
pObject
|
t_aciObject* A pointer to an ACI_DATA object that contains an XML result. |
szName
|
char* A pointer to the parameter name. |
nValue
|
int An integer value. |
This function adds the szName
integer parameter with the specified nValue
to the pObject
.
An ACI error code.
aciObjectParamSetInt(pConnection, ACI_PORTNUMBER, 4001);
|