DAC2_SetCueNumber


Sets the number to display for the cue point position on the DAC-2.

BOOL WINAPI DAC2_SetCueNumber(

    int nDeckID,
    int nNumber
);

Parameters

nDeckID

The ID that specifies either DeckA – 0 or DeckB - 1.

nNumber

The number to display for the cue point position.

 

–1 sets them to blank

--2 sets them to -- --

0-99 sets them to their respective number

Return value
If successful, then TRUE is returned, else FALSE is returned. Use DAC2_ErrorGetCode to get the error code.

Error codes

DAC2_ERROR_INIT

 The DAC-2 has not been initialized.

Remarks
This number could be used to display the track number instead of the cue point bank that is selected. It all depends on how your software application works.

Example
Set the cue number to 15.

//set cue number to 15 for DeckA

DAC2_ SetCueNumber (0, 15);

// set cue number to 15 for DeckB

DAC2_ SetCueNumber (1, 15);

See also
 DAC2_Init