aciObjectParamSetUnsignedInt

Call the aciObjectParamSetUnsignedInt function to set the contents of an unsigned integer parameter.

Syntax

aciError aciObjectParamSetUnsignedInt(
   t_aciObject* pObject,
   const char* szName,
   unsigned int nValue)

Arguments

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 unsigned int  An unsigned integer value.

Discussion

This function adds the szName unsigned integer parameter with the specified nValue to the pObject.

Returns

An ACI error code.

Examples

aciObjectParamSetUnsignedInt(pConnection, ACI_PORTNUMBER, 4001);