|
@@ -267,6 +267,8 @@ extern "C" {
|
267
|
267
|
int cmDspInt( cmDspInst_t* inst, unsigned varId );
|
268
|
268
|
unsigned cmDspUInt( cmDspInst_t* inst, unsigned varId );
|
269
|
269
|
double cmDspDouble( cmDspInst_t* inst, unsigned varId );
|
|
270
|
+ cmSample_t cmDspSample( cmDspInst_t* inst, unsigned varId );
|
|
271
|
+ cmReal_t cmDspReal( cmDspInst_t* inst, unsigned varId );
|
270
|
272
|
const cmChar_t* cmDspStrcz( cmDspInst_t* inst, unsigned varId );
|
271
|
273
|
unsigned cmDspSymbol( cmDspInst_t* inst, unsigned varId );
|
272
|
274
|
cmJsonNode_t* cmDspJson( cmDspInst_t* inst, unsigned varId );
|
|
@@ -276,6 +278,8 @@ extern "C" {
|
276
|
278
|
int cmDspDefaultInt( cmDspInst_t* inst, unsigned varId );
|
277
|
279
|
unsigned cmDspDefaultUInt( cmDspInst_t* inst, unsigned varId );
|
278
|
280
|
double cmDspDefaultDouble( cmDspInst_t* inst, unsigned varId );
|
|
281
|
+ cmSample_t cmDspDefaultSample( cmDspInst_t* inst, unsigned varId );
|
|
282
|
+ cmReal_t cmDspDefaultReal( cmDspInst_t* inst, unsigned varId );
|
279
|
283
|
const cmChar_t* cmDspDefaultStrcz( cmDspInst_t* inst, unsigned varId );
|
280
|
284
|
unsigned cmDspDefaultSymbol( cmDspInst_t* inst, unsigned varId );
|
281
|
285
|
cmJsonNode_t* cmDspDefaultJson( cmDspInst_t* inst, unsigned varId );
|
|
@@ -323,6 +327,8 @@ extern "C" {
|
323
|
327
|
cmDspRC_t cmDspSetDefaultInt( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, int nonInitVal, int val );
|
324
|
328
|
cmDspRC_t cmDspSetDefaultUInt( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, unsigned nonInitVal, unsigned val );
|
325
|
329
|
cmDspRC_t cmDspSetDefaultDouble( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, double nonInitVal, double val );
|
|
330
|
+ cmDspRC_t cmDspSetDefaultSample( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, cmSample_t nonInitVal, cmSample_t val );
|
|
331
|
+ cmDspRC_t cmDspSetDefaultReal( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, cmReal_t nonInitVal, cmReal_t val );
|
326
|
332
|
cmDspRC_t cmDspSetDefaultStrcz( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, const cmChar_t* nonInitVal, const cmChar_t* val );
|
327
|
333
|
cmDspRC_t cmDspSetDefaultSymbol( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, /*unsigned cmInvalidId*/ unsigned val );
|
328
|
334
|
cmDspRC_t cmDspSetDefaultJson( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, cmJsonNode_t* nonInitVal, cmJsonNode_t* val );
|
|
@@ -336,6 +342,8 @@ extern "C" {
|
336
|
342
|
cmDspRC_t cmDspSetInt( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, int val );
|
337
|
343
|
cmDspRC_t cmDspSetUInt( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, unsigned val );
|
338
|
344
|
cmDspRC_t cmDspSetDouble( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, double val );
|
|
345
|
+ cmDspRC_t cmDspSetSample( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, cmSample_t val );
|
|
346
|
+ cmDspRC_t cmDspSetReal( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, cmReal_t val );
|
339
|
347
|
cmDspRC_t cmDspSetStrcz( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, const cmChar_t* val );
|
340
|
348
|
cmDspRC_t cmDspSetSymbol( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, unsigned val );
|
341
|
349
|
cmDspRC_t cmDspSetJson( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned varId, cmJsonNode_t* val );
|