⇤ ← Revision 1 as of 2010-01-11 06:48:54
Size: 732
Comment: create page, add content
|
Size: 726
Comment: update WindowID > Window*
|
Deletions are marked like this. | Additions are marked like this. |
Line 12: | Line 12: |
void SDL_SetWindowTitle(SDL_WindowID windowID, const char* title) |
void SDL_SetWindowTitle(SDL_Window* window, const char* title) |
Line 17: | Line 17: |
||'''windowID'''||the type used to identify the window|| | ||'''window'''||the type used to identify the window|| |
DRAFT |
SDL_SetWindowTitle
Use this function to set the title of the window, in UTF-8 format.
Syntax
void SDL_SetWindowTitle(SDL_Window* window,
const char* title)
Function Parameters
window |
the type used to identify the window |
title |
the desired window title |
Code Examples
You can add your code example here
Remarks
You can add useful comments here