Commit eb2db1a4 authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard

Support for HWND_MESSAGE.

parent 3ad35f8a
......@@ -1017,7 +1017,15 @@ static HWND WIN_CreateWindowEx( CREATESTRUCTA *cs, ATOM classAtom,
parent = GetDesktopWindow();
owner = 0;
if (cs->hwndParent)
if (cs->hwndParent == HWND_MESSAGE)
{
/* native ole32.OleInitialize uses HWND_MESSAGE to create the
* message window (style: WS_POPUP|WS_DISABLED)
*/
FIXME("Parent is HWND_MESSAGE\n");
}
else if (cs->hwndParent)
{
/* Make sure parent is valid */
if (!IsWindow( cs->hwndParent ))
......
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