mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Implement GetWindowThreadProcessId
svn path=/trunk/; revision=5012
This commit is contained in:
parent
a08e8eb37d
commit
86faaec314
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: window.c,v 1.40 2003/07/05 17:57:22 chorns Exp $
|
||||
/* $Id: window.c,v 1.41 2003/07/07 06:39:34 jimtabor Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS user32.dll
|
||||
|
@ -946,8 +946,8 @@ DWORD STDCALL
|
|||
GetWindowThreadProcessId(HWND hWnd,
|
||||
LPDWORD lpdwProcessId)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
if(lpdwProcessId) *lpdwProcessId = NtUserQueryWindow(hWnd, 0);
|
||||
return(NtUserQueryWindow(hWnd, 1));
|
||||
}
|
||||
|
||||
WINBOOL STDCALL
|
||||
|
|
Loading…
Reference in a new issue