mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 05:15:01 +00:00
ole32: Make the apartment window a HWND_MESSAGE window.
This commit is contained in:
parent
eae78db8bb
commit
a803fa3578
1 changed files with 1 additions and 1 deletions
|
@ -724,7 +724,7 @@ HRESULT apartment_createwindowifneeded(struct apartment *apt)
|
|||
{
|
||||
HWND hwnd = CreateWindowW(wszAptWinClass, NULL, 0,
|
||||
0, 0, 0, 0,
|
||||
0, 0, OLE32_hInstance, NULL);
|
||||
HWND_MESSAGE, 0, OLE32_hInstance, NULL);
|
||||
if (!hwnd)
|
||||
{
|
||||
ERR("CreateWindow failed with error %d\n", GetLastError());
|
||||
|
|
Loading…
Reference in a new issue