From fc32b5f1f98e036a805a89435d5d1773abb2d1b9 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Thu, 25 Sep 2003 14:40:42 +0000 Subject: [PATCH] Changed one UNIMPLEMENTED in NtGdiGetDIBits() to DPRINT (when bits=0, application queries for parameters, and gets them via this way). I guess this isn't fully correct behaviour, but everyone will get clear notification via DPRINT in case this branch of NtGdiGetDIBits is called. svn path=/trunk/; revision=6130 --- reactos/subsys/win32k/objects/dib.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/win32k/objects/dib.c b/reactos/subsys/win32k/objects/dib.c index 0e18aa2e4ce..d153fbbf661 100644 --- a/reactos/subsys/win32k/objects/dib.c +++ b/reactos/subsys/win32k/objects/dib.c @@ -1,5 +1,5 @@ /* - * $Id: dib.c,v 1.32 2003/08/31 07:56:24 gvg Exp $ + * $Id: dib.c,v 1.33 2003/09/25 14:40:42 fireball Exp $ * * ReactOS W32 Subsystem * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 ReactOS Team @@ -297,7 +297,8 @@ INT STDCALL NtGdiGetDIBits(HDC hDC, { if (0 != Info.bmiHeader.biBitCount) { - UNIMPLEMENTED; + DPRINT("NtGdiGetDIBits(): This operation isn't fully implemented yet."); + /*UNIMPLEMENTED;*/ } Info.bmiHeader.biWidth = BitmapObj->bitmap.bmWidth;