Author: fireball
Date: Sat Aug 22 11:51:30 2009
New Revision: 42840
URL: http://svn.reactos.org/svn/reactos?rev=42840&view=rev
Log:
- No need for an annoying dprint message about deleting a DIB section. This section is nothing more than a bitmap in the system, so all specific cleanup is happening inside the kernelmode part of a driver.
Modified:
branches/arwinss/reactos/dll/win32/winent.drv/gdidrv.c
Modified: branches/arwinss/reactos/dll/win32/winent.drv/gdidrv.c
URL: http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/dll/win32/winen…
==============================================================================
--- branches/arwinss/reactos/dll/win32/winent.drv/gdidrv.c [iso-8859-1] (original)
+++ branches/arwinss/reactos/dll/win32/winent.drv/gdidrv.c [iso-8859-1] Sat Aug 22 11:51:30 2009
@@ -187,13 +187,6 @@
BOOL CDECL RosDrv_DeleteBitmap( HBITMAP hbitmap )
{
- DIBSECTION dib;
-
- if (GetObjectW( hbitmap, sizeof(dib), &dib ) == sizeof(dib))
- {
- FIXME("TODO: Delete existing DIB section!\n");
- }
-
return RosGdiDeleteBitmap(hbitmap);
}