ole32: Use a HWND_MESSAGE window for the clipboard.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2017-02-02 18:52:43 +01:00
parent c85eaae44c
commit e31dd0f384
1 changed files with 1 additions and 2 deletions

View File

@ -2098,8 +2098,7 @@ static HWND create_clipbrd_window(void)
RegisterClassExW(&class);
return CreateWindowW(clipbrd_wndclass, title, WS_POPUP | WS_CLIPSIBLINGS | WS_OVERLAPPED,
CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
NULL, NULL, hinst, 0);
0, 0, 0, 0, HWND_MESSAGE, NULL, hinst, 0);
}
/*********************************************************************