Wiki Page Content

Differences between revisions 11 and 12
Revision 11 as of 2013-04-19 16:25:03
Size: 1395
Comment: Recommending checking return values before calling SDL_GetError().
Revision 12 as of 2013-12-26 10:57:24
Size: 1389
Comment: Removed spaces in example and deactivated camel case.
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
#pragma disable-camelcase #pragma camelcase off
Line 21: Line 21:
if (SDL_Init( SDL_INIT_EVERYTHING ) < 0) { if (SDL_Init(SDL_INIT_EVERYTHING) < 0) {

SDL_GetError

Use this function to retrieve a message about the last error that occurred.

Syntax

const char* SDL_GetError(void)

Return Value

Returns a message with information about the specific error that occurred, or an empty string if there hasn't been an error since the last call to SDL_ClearError(). Without calling SDL_ClearError(), the message is only applicable when an SDL function has signaled an error. You must check the return values of SDL function calls to determine when to appropriately call SDL_GetError().

This string is statically allocated and must not be freed by the application.

Code Examples

if (SDL_Init(SDL_INIT_EVERYTHING) < 0) {
    // Unrecoverable error, exit here.
    printf("SDL_Init failed: %s\n", SDL_GetError());
}

Note: Although this example uses SDL_Init(), SDL_GetError() provides an error message for any failed SDL operation which supports error reporting, see the wiki page for each particular SDL function.

Remarks

It is possible for multiple errors to occur before calling SDL_GetError(). Only the last error is returned.


CategoryAPI, CategoryError

None: SDL_GetError (last edited 2016-05-11 20:27:55 by PhilippWiesemann)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit