dmParamsSetIntRange(3dm) dmParamsSetIntRange(3dm) NAME dmParamsSetIntRange, dmParamsSetFloatRange, dmParamsSetFractRange - set range values in digital media parameter/value lists SYNOPSIS #include <dmedia/dm_params.h> DMstatus dmParamsSetIntRange ( DMparams* params, const char* paramName, const DMintrange* value ) DMstatus dmParamsSetFloatRange ( DMparams* params, const char* paramName, const DMfloatrange* value ) DMstatus dmParamsSetFractRange ( DMparams* params, const char* paramName, const DMfractionrange* value ) DESCRIPTION These functions all store ranges of values in a parameter value list. If there is already a value in the list with the given name it will be replaced with the new one. The contents of the range passed in is copied into the parameter list. This means that the caller can free the range structure after storing it in the parameter list. DM_SUCCESS is returned if the operation succeeded, DM_FAILURE if there was not enough memory available to hold a copy of the range. SEE ALSO dmParams(3dm), dmParamsGetIntRange(3dm), dmParamsGetNumElems(3dm), dmSetImageDefaults(3dm), dmSetAudioDefaults(3dm). Page 1