Size: 732
Comment: create page, add content
|
Size: 654
Comment: update content - pointers, structs
|
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 set the title of the window, in UTF-8 format. | Use this function to set the title of a window. |
Line 12: | Line 11: |
void SDL_SetWindowTitle(SDL_WindowID windowID, const char* title) |
void SDL_SetWindowTitle(SDL_Window* window, const char* title) |
Line 17: | Line 16: |
||'''windowID'''||the type used to identify the window|| ||'''title'''||the desired window title|| |
||'''window'''||the SDL_Window to change|| ||'''title'''||the desired window title in UTF-8 format|| |
SDL_SetWindowTitle
Use this function to set the title of a window.
Syntax
void SDL_SetWindowTitle(SDL_Window* window,
const char* title)
Function Parameters
window |
the SDL_Window to change |
title |
the desired window title in UTF-8 format |
Code Examples
You can add your code example here
Remarks
You can add useful comments here