|
Size: 747
Comment: remove RF - 2/28 changeset 5421 (2/10 5244)
|
Size: 730
Comment: update content for consistency - return value; camelcase
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 2: | Line 2: |
| #pragma disable-camelcase | #pragma camelcase off |
| Line 18: | Line 18: |
| Returns the ID of the window created or 0 if window creation failed; call [[SDL_GetError]]() for more information. | Returns the window that was created or NULL on failure; call [[SDL_GetError]]() for more information. |
SDL_CreateWindowFrom
Use this function to create an SDL window from an existing native window.
Contents
Syntax
SDL_Window* SDL_CreateWindowFrom(const void* data)
Function Parameters
data |
a pointer to driver-dependent window creation data |
Return Value
Returns the window that was created or NULL on failure; call SDL_GetError() for more information.
Code Examples
You can add your code example here
Remarks
You can add useful comments here
