mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +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:
parent
0dd1a22450
commit
d95752ca22
1 changed files with 18 additions and 2 deletions
|
@ -921,8 +921,24 @@ GetGUIThreadInfo(DWORD idThread,
|
||||||
HWND STDCALL
|
HWND STDCALL
|
||||||
GetLastActivePopup(HWND hWnd)
|
GetLastActivePopup(HWND hWnd)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
PWINDOW Wnd, WndParent;
|
||||||
return 0;
|
HWND Ret = NULL;
|
||||||
|
|
||||||
|
Wnd = ValidateHwnd(hWnd);
|
||||||
|
if (Wnd != NULL)
|
||||||
|
{
|
||||||
|
_SEH_TRY
|
||||||
|
{
|
||||||
|
WndParent = NULL;
|
||||||
|
Ret = hWnd;
|
||||||
|
}
|
||||||
|
_SEH_HANDLE
|
||||||
|
{
|
||||||
|
/* Do nothing */
|
||||||
|
}
|
||||||
|
_SEH_END;
|
||||||
|
}
|
||||||
|
return Ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue