Q3Controller_SetValues
You can use theQ3Controller_SetValuesfunction to set the list of values of a controller.
TQ3Status Q3Controller_SetValues ( TQ3ControllerRef controllerRef, const float *values, unsigned long valueCount);
controllerRef- A reference to a controller.
values- A pointer to an array of controller values. The size of the array is determined by the number of elements in the array (as specified by the
valueCountparameter) and the size of a controller value (which is controller-dependent).valueCount- The number of elements in the array pointed to by the
valuesparameter.DESCRIPTION
TheQ3Controller_SetValuesfunction copies the data specified in thevaluesparameter into the value list of the controller specified by thecontrollerRefparameter.Q3Controller_SetValuescopies the number of elements specified by thevalueCountparameter.SPECIAL CONSIDERATIONS
In general, you need to use this function only if you are writing a device driver for a controller.