NAME

cxParamStrSet - set parameter to a string value

C SPECIFICATION

#include <cx/DataAccess.h>

cxErrorCode cxParamStrSet(cxParameter *src, const char *str)

FORTRAN SPECIFICATION

integer function cxParamStrSet(src, str)
integer src
character*(*) str

PARAMETERS

src
Input data structure.
str
New parameter value.

FUNCTION RETURN VALUE

Returns an integer error code enumeration.

DESCRIPTION

Sets the contents of src to the value str. The type of src is not changed. If src is of type cx_param_long or cx_param_double, str with the sscanf format %ld or %lf.

See cxDataManAbortOnError for more details on writing portable module code that copes well with limited memory.

SEE ALSO

cxDataManAbortOnError



[ Documentation Home ]