SDL_InitSubSystem

Function SDL_InitSubSystem 

Source
pub unsafe extern "C" fn SDL_InitSubSystem(
    flags: SDL_InitFlags,
) -> bool
Expand description

Compatibility function to initialize the SDL library.

This function and SDL_Init() are interchangeable.

§Parameters

§Return value

Returns true on success or false on failure; call SDL_GetError() for more information.

§Availability

This function is available since SDL 3.2.0.

§See also