SDL_CreateEnvironment - Man Page
Create a set of environment variables
Header File
Defined in SDL3/SDL_stdinc.h
Synopsis
#include "SDL3/SDL.h" SDL_Environment * SDL_CreateEnvironment(bool populated);
Function Parameters
- populated
true to initialize it from the C runtime environment, false to create an empty environment.
Return Value
( SDL_Environment
*) Returns a pointer to the new environment or NULL on failure; call SDL_GetError () for more information.
Thread Safety
If populated is false, it is safe to call this function from any thread, otherwise it is safe if no other threads are calling setenv() or unsetenv()
Availability
This function is available since SDL 3.2.0.
See Also
·(3), SDL_GetEnvironmentVariable(3), ·(3), SDL_GetEnvironmentVariables(3), ·(3), SDL_SetEnvironmentVariable(3), ·(3), SDL_UnsetEnvironmentVariable(3), ·(3), SDL_DestroyEnvironment(3)
Referenced By
SDL_DestroyEnvironment(3), SDL_Environment.3type(3), SDL_GetEnvironmentVariable(3), SDL_GetEnvironmentVariables(3), SDL_SetEnvironmentVariable(3), SDL_UnsetEnvironmentVariable(3).