SDL_SetErrorV - Man Page

Set the SDL error message for the current thread.

Synopsis

#include <SDL3/SDL_error.h>

bool SDL_SetErrorV(const char *fmt, va_list ap);

Description

Calling this function will replace any previous error message that was set.

Function Parameters

fmt

a printf()-style message format string.

ap

a variable argument list.

Return Value

Returns false.

Thread Safety

It is safe to call this function from any thread.

Availability

This function is available since SDL 3.2.0.

See Also

SDL_ClearError(3), SDL_GetError(3), SDL_SetError(3)

Referenced By

SDL_SetError(3).

SDL 3.2.16 Simple Directmedia Layer SDL3 FUNCTIONS