mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 06:33:01 +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
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS user32.dll
|
* PROJECT: ReactOS user32.dll
|
||||||
|
@ -611,7 +611,7 @@ GetLastActivePopup(HWND hWnd)
|
||||||
HWND STDCALL
|
HWND STDCALL
|
||||||
GetParent(HWND hWnd)
|
GetParent(HWND hWnd)
|
||||||
{
|
{
|
||||||
return (HWND)0;
|
return NtUserGetAncestor(hWnd, GA_PARENT);
|
||||||
}
|
}
|
||||||
|
|
||||||
WINBOOL STDCALL
|
WINBOOL STDCALL
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue