mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Added GWL_ID to NtUserGetWindowLong. Not implemented yet. Just there to prevent the debug printfs.
svn path=/trunk/; revision=4233
This commit is contained in:
parent
1b48f7d941
commit
c6e059cb67
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: window.c,v 1.21 2003/01/24 22:42:15 jfilby Exp $
|
||||
/* $Id: window.c,v 1.22 2003/03/03 18:57:26 rcampbell Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -938,7 +938,9 @@ NtUserGetWindowLong(HWND hWnd, DWORD Index)
|
|||
Result = (DWORD)WindowObject->Class->Class.lpfnWndProc;
|
||||
break;
|
||||
}
|
||||
|
||||
case GWL_ID:
|
||||
break;
|
||||
|
||||
default:
|
||||
{
|
||||
DPRINT1("NtUserGetWindowLong(): Unsupported index %d\n", Index);
|
||||
|
|
Loading…
Reference in a new issue