Get the tags currently associated with a track.
Defined in <SDL3_mixer/SDL_mixer.h>
char ** MIX_GetTrackTags(MIX_Track *track, int *count);| MIX_Track * | track | the track to query. |
| int * | count | a pointer filled in with the number of tags returned, can be NULL. |
(char **) Returns an array of the tags, NULL-terminated, or NULL on failure; call SDL_GetError() for more information. This is a single allocation that should be freed with SDL_free() when it is no longer needed.
Tags are not provided in any guaranteed order.
It is safe to call this function from any thread.
This function is available since SDL_mixer 3.0.0.