TAG_CUE structure

RIFF "cue " tag structure.

typedef struct {
    DWORD dwCuePoints;
    TAG_CUE_POINT CuePoints[];
} TAG_CUE;

Members

dwCuePointsCount of cue points
CuePointsCue point table.

Remarks

The structure is given by BASS_ChannelGetTags as it is in the RIFF file, which is little-endian, so the members will need to be reversed on big-endian platforms.

See also

BASS_ChannelGetTags, TAG_CUE_POINT structure