sdlQuitSubSystem function

void sdlQuitSubSystem(
  1. int flags
)

Shut down specific SDL subsystems.

You still need to call SDL_Quit() even if you close all open subsystems with SDL_QuitSubSystem().

\param flags any of the flags used by SDL_Init(); see SDL_Init for details.

\since This function is available since SDL 3.1.3.

\sa SDL_InitSubSystem \sa SDL_Quit

extern SDL_DECLSPEC void SDLCALL SDL_QuitSubSystem(SDL_InitFlags flags)

Implementation

void sdlQuitSubSystem(int flags) {
  final sdlQuitSubSystemLookupFunction = libSdl3.lookupFunction<
      Void Function(Uint32 flags),
      void Function(int flags)>('SDL_QuitSubSystem');
  return sdlQuitSubSystemLookupFunction(flags);
}