mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 04:13:32 +00:00
GetLastActivePopup is still unimplemented, we return the current window handle if it is valid.
svn path=/trunk/; revision=34276
This commit is contained in:
@@ -921,8 +921,24 @@ GetGUIThreadInfo(DWORD idThread,
|
||||
HWND STDCALL
|
||||
GetLastActivePopup(HWND hWnd)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
PWINDOW Wnd, WndParent;
|
||||
HWND Ret = NULL;
|
||||
|
||||
Wnd = ValidateHwnd(hWnd);
|
||||
if (Wnd != NULL)
|
||||
{
|
||||
_SEH_TRY
|
||||
{
|
||||
WndParent = NULL;
|
||||
Ret = hWnd;
|
||||
}
|
||||
_SEH_HANDLE
|
||||
{
|
||||
/* Do nothing */
|
||||
}
|
||||
_SEH_END;
|
||||
}
|
||||
return Ret;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user