dmParamsSetIntArray(3dm) dmParamsSetIntArray(3dm)
dmParamsSetIntArray, dmParamsSetEnumArray, dmParamsSetStringArray,
dmParamsSetFloatArray, dmParamsSetFractArray - set array values in
digital media parameter/value lists
#include <dmedia/dm_params.h>
DMstatus dmParamsSetIntArray [Toc] [Back]
( DMparams* params,
const char* paramName,
const DMintarray* value )
DMstatus dmParamsSetEnumArray [Toc] [Back]
( DMparams* params,
const char* paramName,
const DMenumarray* value )
DMstatus dmParamsSetStringArray [Toc] [Back]
( DMparams* params,
const char* paramName,
const DMstringarray* value )
DMstatus dmParamsSetFloatArray [Toc] [Back]
( DMparams* params,
const char* paramName,
const DMfloatarray* value )
DMstatus dmParamsSetFractArray [Toc] [Back]
( DMparams* params,
const char* paramName,
const DMfractionarray* value )
These functions all store arrays 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 array passed in is copied
into the parameter list. This means that the caller can free the array
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 array.
dmParams(3dm), dmParamsGetIntArray(3dm), dmParamsGetNumElems(3dm),
dmSetImageDefaults(3dm), dmSetAudioDefaults(3dm).
PPPPaaaaggggeeee 1111 [ Back ]
|