SDL_LogMessageV

Log a message with the specified category and priority.

extern (C) nothrow @nogc
void
SDL_LogMessageV
(,,
const(char)* fmt
,
va_list ap
)

Parameters

category int

the category of the message.

priority SDL_LogPriority

the priority of the message.

fmt const(char)*

a printf() style message format string.

ap va_list

a variable argument list.

Threadsafety: It is safe to call this function from any thread.

See Also

Meta