###### (This function is part of SDL_mixer, a separate library from SDL.)
# Mix_StartTrack

Start a track in music object.

## Header File

Defined in [<SDL_mixer.h>](https://github.com/libsdl-org/SDL_mixer/blob/SDL2/include/SDL_mixer.h)

## Syntax

```c
int Mix_StartTrack(Mix_Music *music, int track);
```

## Function Parameters

|                          |           |                                                 |
| ------------------------ | --------- | ----------------------------------------------- |
| [Mix_Music](Mix_Music) * | **music** | the music object.                               |
| int                      | **track** | the track number to play. 0 is the first track. |

## Return Value

(int) Returns 0 if successful, or -1 if failed or isn't implemented.

## Remarks

This only applies to GME music formats.

## Version

This function is available since SDL_mixer 2.8.0.

----
[CategoryAPI](CategoryAPI), [CategoryAPIFunction](CategoryAPIFunction)