From f0c3bc979b47df2926afa6a53666d31211f51272 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Fri, 12 Dec 2003 17:20:53 +0000 Subject: [PATCH] Implement NtUserGetDCEx() for non-cache DCs svn path=/trunk/; revision=6972 --- reactos/subsys/win32k/ntuser/windc.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/reactos/subsys/win32k/ntuser/windc.c b/reactos/subsys/win32k/ntuser/windc.c index 11ef67dc2c6..4d122b8809d 100644 --- a/reactos/subsys/win32k/ntuser/windc.c +++ b/reactos/subsys/win32k/ntuser/windc.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: windc.c,v 1.42 2003/12/12 14:22:37 gvg Exp $ +/* $Id: windc.c,v 1.43 2003/12/12 17:20:53 gvg Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -389,9 +389,12 @@ NtUserGetDCEx(HWND hWnd, HANDLE ClipRegion, ULONG Flags) else { Dce = Window->Dce; - /* FIXME: Implement this. */ -#ifdef TODO - DbgBreakPoint(); + if (NULL != Dce && Dce->hwndCurrent == hWnd) + { + UpdateVisRgn = FALSE; /* updated automatically, via DCHook() */ + } +#if 1 /* FIXME */ + UpdateVisRgn = TRUE; #endif }