mixResumeGroup function

void mixResumeGroup(
  1. int tag
)

Resume playing of a group of channels by arbitrary tag.

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.

A tag is an arbitrary number that can be assigned to several mixer channels, to form groups of channels.

The default tag for a channel is -1.

\param tag an arbitrary value, assigned to channels, to search for.

\since This function is available since SDL_mixer 3.0.0.

extern SDL_DECLSPEC void SDLCALL Mix_ResumeGroup(int tag)

Implementation

void mixResumeGroup(int tag) {
  final mixResumeGroupLookupFunction = libSdl3Mixer.lookupFunction<
      Void Function(Int32 tag), void Function(int tag)>('Mix_ResumeGroup');
  return mixResumeGroupLookupFunction(tag);
}