###### (This is the documentation for SDL3, which is the current stable version. [SDL2](https://wiki.libsdl.org/SDL2/) was the previous version!) # SDL_Init Initialize the SDL library. ## Header File Defined in [](https://github.com/libsdl-org/SDL/blob/main/include/SDL3/SDL_init.h) ## Syntax ```c bool SDL_Init(SDL_InitFlags flags); ``` ## Function Parameters | | | | | ------------------------------ | --------- | ------------------------------- | | [SDL_InitFlags](SDL_InitFlags) | **flags** | subsystem initialization flags. | ## Return Value (bool) Returns true on success or false on failure; call [SDL_GetError](SDL_GetError)() for more information. ## Remarks [SDL_Init](SDL_Init)() simply forwards to calling [SDL_InitSubSystem](SDL_InitSubSystem)(). Therefore, the two may be used interchangeably. Though for readability of your code [SDL_InitSubSystem](SDL_InitSubSystem)() might be preferred. The file I/O (for example: [SDL_IOFromFile](SDL_IOFromFile)) and threading ([SDL_CreateThread](SDL_CreateThread)) subsystems are initialized by default. Message boxes ([SDL_ShowSimpleMessageBox](SDL_ShowSimpleMessageBox)) also attempt to work without initializing the video subsystem, in hopes of being useful in showing an error dialog when [SDL_Init](SDL_Init) fails. You must specifically initialize other subsystems if you use them in your application. Logging (such as [SDL_Log](SDL_Log)) works without initialization, too. `flags` may be any of the following OR'd together: - [`SDL_INIT_AUDIO`](SDL_INIT_AUDIO): audio subsystem; automatically initializes the events subsystem - [`SDL_INIT_VIDEO`](SDL_INIT_VIDEO): video subsystem; automatically initializes the events subsystem - [`SDL_INIT_JOYSTICK`](SDL_INIT_JOYSTICK): joystick subsystem; automatically initializes the events subsystem - [`SDL_INIT_HAPTIC`](SDL_INIT_HAPTIC): haptic (force feedback) subsystem - [`SDL_INIT_GAMEPAD`](SDL_INIT_GAMEPAD): gamepad subsystem; automatically initializes the joystick subsystem - [`SDL_INIT_EVENTS`](SDL_INIT_EVENTS): events subsystem - [`SDL_INIT_SENSOR`](SDL_INIT_SENSOR): sensor subsystem; automatically initializes the events subsystem - [`SDL_INIT_CAMERA`](SDL_INIT_CAMERA): camera subsystem; automatically initializes the events subsystem Subsystem initialization is ref-counted, you must call [SDL_QuitSubSystem](SDL_QuitSubSystem)() for each [SDL_InitSubSystem](SDL_InitSubSystem)() to correctly shutdown a subsystem manually (or call [SDL_Quit](SDL_Quit)() to force shutdown). If a subsystem is already loaded then this call will increase the ref-count and return. Consider reporting some basic metadata about your application before calling [SDL_Init](SDL_Init), using either [SDL_SetAppMetadata](SDL_SetAppMetadata)() or [SDL_SetAppMetadataProperty](SDL_SetAppMetadataProperty)(). ## Version This function is available since SDL 3.1.3. ## See Also - [SDL_SetAppMetadata](SDL_SetAppMetadata) - [SDL_SetAppMetadataProperty](SDL_SetAppMetadataProperty) - [SDL_InitSubSystem](SDL_InitSubSystem) - [SDL_Quit](SDL_Quit) - [SDL_SetMainReady](SDL_SetMainReady) - [SDL_WasInit](SDL_WasInit) ---- [CategoryAPI](CategoryAPI), [CategoryAPIFunction](CategoryAPIFunction), [CategoryInit](CategoryInit)