|
⇤ ← Revision 1 as of 2010-03-12 01:01:05
Size: 846
Comment: in progress
|
Size: 620
Comment: content added (Rev 5540)
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 6: | Line 6: |
| Use this function to ''insert short function description here''. | Use this function to free a cursor created with [[SDL_CreateCursor]](). |
| Line 12: | Line 12: |
| value SDL_FunctionName(param) | void SDL_FreeCursor(SDL_Cursor* cursor) |
| Line 16: | Line 16: |
| ||'''param'''||description|| == Return Value == ''Remove this section if there is no return value. Many SDL functions use this standard text (remove if not applicable):'' Returns 0 on success, or a negative error code on failure; call [[SDL_GetError]]() for more information. |
||'''cursor'''||the SDL_Cursor to free|| |
| Line 32: | Line 27: |
| .[[SDL_OtherFunction]] | .[[SDL_CreateCursor]] |
| Line 35: | Line 30: |
| [[CategoryAPI]], [[CategoryHeader]] | [[CategoryAPI]], [[CategoryMouse]] |
DRAFT |
SDL_FreeCursor
Use this function to free a cursor created with SDL_CreateCursor().
Syntax
void SDL_FreeCursor(SDL_Cursor* cursor)
Function Parameters
cursor |
the SDL_Cursor to free |
Code Examples
You can add your code example here
Remarks
You can add useful comments here
