Call the aciObjectParamSetStringB function to set the contents of a binary data parameter with a length.
aciError aciObjectParamSetStringB ( t_aciObject* pObject, size_t nLength, const char *szName, const char *szValue);
| Arguments | Type/Description |
|---|---|
pObject
|
t_aciObject* A pointer to the ACI object. |
nLength
|
size_t The number of bytes to copy from szValue. |
szName
|
char* The parameter name. |
szValue
|
char* The parameter value. |
This function adds the binary data parameter szName with nLength bytes copied from value szValue to the ACI object pObject.
An ACI error code.
|
|