BASS_MIDI_MARK structure
Used with BASS_MIDI_StreamGetMark and BASS_MIDI_StreamGetMarks to retrieve markers.
typedef struct { DWORD track; DWORD pos; char *text; } BASS_MIDI_MARK;
Members
track | The MIDI track containing the marker... 0 = first. |
pos | The position of the marker. This may be in bytes or ticks, depending on whether the BASS_MIDI_MARK_TICK flag was used in the BASS_MIDI_StreamGetMark or BASS_MIDI_StreamGetMarks call. |
text | The marker text. |