mixResume function

void mixResume(
  1. int channel
)

Resume a particular channel.

It is legal to resume an unpaused or invalid channel; it causes no effect and reports no error.

If the paused channel has an expiration, its expiration countdown resumes now, as well.

Specifying a channel of -1 will resume all paused channels. Any music is unaffected.

\param channel the channel to resume, or -1 to resume all paused channels.

\since This function is available since SDL_mixer 2.0.0.

extern DECLSPEC void SDLCALL Mix_Resume(int channel)

Implementation

void mixResume(int channel) {
  final mixResumeLookupFunction = libSdl2Mixer.lookupFunction<
      Void Function(Int32 channel), void Function(int channel)>('Mix_Resume');
  return mixResumeLookupFunction(channel);
}