DAC2_SetColons


Shows or hides the colons between the time codes on the DAC-2.

BOOL WINAPI DAC2_SetColons(
    int nDeckID,

    BOOL bShow
);

Parameters

nDeckID

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

bShow

Show the colons or hide the colons.

 

 

 

 

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
You can turn the colons on/off at anytime.

Example
Show colons.

//turn colons on for DeckA

DAC2_SetColons(0, TRUE);

//turn colons on for DeckB

DAC2_SetColons(1, TRUE);

See also
 DAC2_Init