Get the last error message that was set for the current thread.
Defined in SDL_error.h
char * SDL_GetErrorMsg(char *errstr, int maxlen);
char * | errstr | A buffer to fill with the last error message that was set for the current thread. |
int | maxlen | The size of the buffer pointed to by the errstr parameter. |
(char *) Returns the pointer passed in as the errstr
parameter.
This allows the caller to copy the error string into a provided buffer, but otherwise operates exactly the same as SDL_GetError().
This function is available since SDL 2.0.14.