mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Implemented GetParent()
svn path=/trunk/; revision=4334
This commit is contained in:
parent
46cdc5f1ca
commit
6952a4bc36
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: window.c,v 1.23 2003/03/18 06:44:11 rcampbell Exp $
|
||||
/* $Id: window.c,v 1.24 2003/03/18 06:46:10 rcampbell Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS user32.dll
|
||||
|
@ -611,7 +611,7 @@ GetLastActivePopup(HWND hWnd)
|
|||
HWND STDCALL
|
||||
GetParent(HWND hWnd)
|
||||
{
|
||||
return (HWND)0;
|
||||
return NtUserGetAncestor(hWnd, GA_PARENT);
|
||||
}
|
||||
|
||||
WINBOOL STDCALL
|
||||
|
|
Loading…
Reference in a new issue