|
Size: 632
Comment: create page, add content (Wed Mar 10 ver; changeset 4428)
|
Size: 745
Comment: remove 'draft' note
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 3: | Line 3: |
| ||<tablewidth="100%" style="color: #FF0000;" :> DRAFT|| | |
| Line 6: | Line 5: |
| Use this function to ^get more information about an error^. | Use this function to retrieve a message about the last error that occurred. |
| Line 16: | Line 15: |
| A pointer to (a enum? filled with) information about the specific error that occurred. | 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]](). |
| Line 24: | Line 23: |
| ''You can add useful comments here'' | It is possible for multiple errors to occur before calling [[SDL_GetError]](). Only the last error is returned. |
| Line 27: | Line 26: |
| .[[SDL_ClearError]] ??? | .[[SDL_ClearError]] |
SDL_GetError
Use this function to retrieve a message about the last error that occurred.
Syntax
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().
Code Examples
You can add your code example here
Remarks
It is possible for multiple errors to occur before calling SDL_GetError(). Only the last error is returned.
