Commit 88a5324d authored by Sam Lantinga's avatar Sam Lantinga

SDL_CreateWindowFrom() is actually going to be supported. :)

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404234
parent 3dba2891
...@@ -538,14 +538,12 @@ extern DECLSPEC SDL_WindowID SDLCALL SDL_CreateWindow(const char *title, ...@@ -538,14 +538,12 @@ extern DECLSPEC SDL_WindowID SDLCALL SDL_CreateWindow(const char *title,
int h, Uint32 flags); int h, Uint32 flags);
/** /**
* \brief Create an SDL window struct from an existing native window. * \brief Create an SDL window from an existing native window.
* *
* \param data A pointer to driver-dependent window creation data * \param data A pointer to driver-dependent window creation data
* *
* \return The id of the window created, or zero if window creation failed. * \return The id of the window created, or zero if window creation failed.
* *
* \warning This function is NOT SUPPORTED, use at your own risk!
*
* \sa SDL_DestroyWindow() * \sa SDL_DestroyWindow()
*/ */
extern DECLSPEC SDL_WindowID SDLCALL SDL_CreateWindowFrom(const void *data); extern DECLSPEC SDL_WindowID SDLCALL SDL_CreateWindowFrom(const void *data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment