mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
Fix some Wine/ReactOS differences
svn path=/trunk/; revision=6941
This commit is contained in:
parent
0b5e7d7f44
commit
2f434abd37
1 changed files with 11 additions and 1 deletions
|
@ -1332,7 +1332,11 @@ static LRESULT MDIClientWndProc_common( HWND hwnd, UINT message,
|
|||
{
|
||||
MDICLIENTINFO *ci;
|
||||
|
||||
if (!(ci = get_client_info( hwnd ))) return 0;
|
||||
if (WM_NCCREATE != message && WM_CREATE != message
|
||||
&& NULL == (ci = get_client_info(hwnd)))
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
switch (message)
|
||||
{
|
||||
|
@ -1345,6 +1349,12 @@ static LRESULT MDIClientWndProc_common( HWND hwnd, UINT message,
|
|||
#ifndef __REACTOS__
|
||||
WND *wndPtr = WIN_GetPtr( hwnd );
|
||||
#endif
|
||||
ci = HeapAlloc(GetProcessHeap(), 0, sizeof(MDICLIENTINFO));
|
||||
if (NULL == ci)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
SetWindowLongPtr(hwnd, 0, (LONG_PTR) ci);
|
||||
|
||||
/* Translation layer doesn't know what's in the cs->lpCreateParams
|
||||
* so we have to keep track of what environment we're in. */
|
||||
|
|
Loading…
Reference in a new issue