SDL_Function
Name
Mix_Pause -- Pauses a channel
Synopsis
#include "SDL_mixer.h" void Mix_Pause(int channel);
Description
Mix_Pause will pause the channel specified in channel. If -1 is passed as the parameter to channel, all channels will be paused
Return Value
Returns nothing
Example
Mix_Pause(-1); //pauses all channels
