Call the aciObjectParamSetFile function to set a file parameter to the path to a file to upload. You can use this function for
aciError aciObjectParamSetFile( t_aciObject* pObject, const char * szName, const char * szFileName );
| Arguments | Type/Description |
|---|---|
pObject
|
t_aciObject* A pointer to the ACI object. |
szName
|
char* The parameter name. |
szFileName
|
char* The path to the file to upload. |
This function adds the file parameter szName with the file path szFileName to the ACI object pObject.
An ACI error code.
|
|