Call the aciObjectParamSetUnsignedInt function to set the contents of an unsigned integer parameter.
aciError aciObjectParamSetUnsignedInt( t_aciObject* pObject, const char* szName, unsigned 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
|
unsigned int An unsigned integer value. |
This function adds the szName unsigned integer parameter with the specified nValue to the pObject.
An ACI error code.
aciObjectParamSetUnsignedInt(pConnection, ACI_PORTNUMBER, 4001);
|
|