Author: gadamopoulos Date: Sun Mar 22 21:34:08 2015 New Revision: 66860
URL: http://svn.reactos.org/svn/reactos?rev=66860&view=rev Log: [SHELL32] - Call SetTaskmanWindow right before RegisterShellHookWindow like the old explorer did.
Modified: trunk/reactos/dll/win32/shell32/wine/shellord.c
Modified: trunk/reactos/dll/win32/shell32/wine/shellord.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/wine/shel... ============================================================================== --- trunk/reactos/dll/win32/shell32/wine/shellord.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/wine/shellord.c [iso-8859-1] Sun Mar 22 21:34:08 2015 @@ -310,9 +310,14 @@ DWORD dwType) { if (dwType == 3) + { + SetTaskmanWindow(hWnd); return RegisterShellHookWindow(hWnd); + } else if (dwType == 0) + { return DeregisterShellHookWindow(hWnd); + }
ERR("Unsupported argument"); return FALSE;