mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 19:55:41 +00:00
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
This commit is contained in:
parent
2f740eff13
commit
fc32b5f1f9
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue