From c6e059cb670658f7ae33822097eaf41be006d578 Mon Sep 17 00:00:00 2001 From: Richard Campbell Date: Mon, 3 Mar 2003 18:57:26 +0000 Subject: [PATCH] Added GWL_ID to NtUserGetWindowLong. Not implemented yet. Just there to prevent the debug printfs. svn path=/trunk/; revision=4233 --- reactos/subsys/win32k/ntuser/window.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/ntuser/window.c b/reactos/subsys/win32k/ntuser/window.c index 3d6b25a84bc..55bef24d802 100644 --- a/reactos/subsys/win32k/ntuser/window.c +++ b/reactos/subsys/win32k/ntuser/window.c @@ -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);