Call the aciObjectParamSetStringN function to set the contents of a string parameter with a length.
aciError aciObjectParamSetStringN ( t_aciObject* pObject, int nLength const char *szName, const char *szValue);
| Arguments | Type/Description |
|---|---|
pObject
|
t_aciObject* A pointer to the ACI object. |
nLength
|
int The length of the parameter value to set to. |
szName
|
char* The parameter name. |
szValue
|
char* The parameter value. |
This function adds the string parameter szName with the specific value szValue to the ACI object pObject. If the length of szValue is greater than nLength, only nLength bytes of it is set.
An ACI error code.
|
|