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:
Richard Campbell 2003-03-03 18:57:26 +00:00
parent 1b48f7d941
commit c6e059cb67

View file

@ -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);