Wiki Page Content

Differences between revisions 11 and 12
Revision 11 as of 2010-08-29 19:19:08
Size: 822
Editor: SheenaSmith
Comment: update content (w/ Sam)
Revision 12 as of 2010-08-29 19:20:19
Size: 900
Editor: Sam Lantinga
Comment: null
Deletions are marked like this. Additions are marked like this.
Line 25: Line 25:
SDL_SetError("Something unexpected happened: Error Code %d", -37); int errorCode = 0;
...
errorCode = -37;
...
if (errorCode < 0)
    
SDL_SetError("Something unexpected happened: Error Code %d", errorCode);

SDL_SetError

Use this function to set the SDL error string.

Syntax

void SDL_SetError(const char* fmt, 
                  ...)

Function Parameters

fmt

a printf() style message format string

...

additional parameters matching % tokens in the fmt string, if any

Code Examples

SDL_SetError("Something unexpected happened!");

int errorCode = 0;
...
errorCode = -37;
...
if (errorCode < 0)
    SDL_SetError("Something unexpected happened: Error Code %d", errorCode);

Remarks

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


CategoryAPI, CategoryError

None: SDL_SetError (last edited 2016-05-11 20:22:50 by PhilippWiesemann)

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