[ros-diffs] [fireball] 43405: - Remove BitBlt and PatBlt, they are going to be superseded by StretchBlt.

fireball at svn.reactos.org fireball at svn.reactos.org
Mon Oct 12 17:10:01 CEST 2009


Author: fireball
Date: Mon Oct 12 17:10:01 2009
New Revision: 43405

URL: http://svn.reactos.org/svn/reactos?rev=43405&view=rev
Log:
- Remove BitBlt and PatBlt, they are going to be superseded by StretchBlt.

Modified:
    branches/arwinss/reactos/dll/win32/winent.drv/gdidrv.c
    branches/arwinss/reactos/dll/win32/winent.drv/winent.drv.spec

Modified: branches/arwinss/reactos/dll/win32/winent.drv/gdidrv.c
URL: http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/dll/win32/winent.drv/gdidrv.c?rev=43405&r1=43404&r2=43405&view=diff
==============================================================================
--- 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] Mon Oct 12 17:10:01 2009
@@ -40,6 +40,7 @@
     return FALSE;
 }
 
+#if 0
 BOOL CDECL RosDrv_BitBlt( NTDRV_PDEVICE *physDevDst, INT xDst, INT yDst,
                     INT width, INT height, NTDRV_PDEVICE *physDevSrc,
                     INT xSrc, INT ySrc, DWORD rop )
@@ -75,6 +76,7 @@
     return RosGdiBitBlt(physDevDst->hKernelDC, xDst, yDst, width, height,
         physDevSrc->hKernelDC, xSrc, ySrc, rop);
 }
+#endif
 
 int CDECL RosDrv_ChoosePixelFormat(NTDRV_PDEVICE *physDev,
                                    const PIXELFORMATDESCRIPTOR *ppfd)
@@ -396,6 +398,7 @@
     return FALSE;
 }
 
+#if 0
 BOOL CDECL RosDrv_PatBlt( NTDRV_PDEVICE *physDev, INT left, INT top, INT width, INT height, DWORD rop )
 {
     POINT pts[2], ptBrush;
@@ -418,6 +421,7 @@
 
     return RosGdiPatBlt(physDev->hKernelDC, left, top, width, height, rop);
 }
+#endif
 
 BOOL CDECL RosDrv_Pie( NTDRV_PDEVICE *physDev, INT left, INT top, INT right, INT bottom,
             INT xstart, INT ystart, INT xend, INT yend )

Modified: branches/arwinss/reactos/dll/win32/winent.drv/winent.drv.spec
URL: http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/dll/win32/winent.drv/winent.drv.spec?rev=43405&r1=43404&r2=43405&view=diff
==============================================================================
--- branches/arwinss/reactos/dll/win32/winent.drv/winent.drv.spec [iso-8859-1] (original)
+++ branches/arwinss/reactos/dll/win32/winent.drv/winent.drv.spec [iso-8859-1] Mon Oct 12 17:10:01 2009
@@ -2,7 +2,6 @@
 
 @ cdecl AlphaBlend(ptr long long long long ptr long long long long long) RosDrv_AlphaBlend
 @ cdecl Arc(ptr long long long long long long long long) RosDrv_Arc
-@ cdecl BitBlt(ptr long long long long ptr long long long) RosDrv_BitBlt
 @ cdecl ChoosePixelFormat(ptr ptr) RosDrv_ChoosePixelFormat
 @ cdecl Chord(ptr long long long long long long long long) RosDrv_Chord
 @ cdecl CreateBitmap(ptr long ptr) RosDrv_CreateBitmap
@@ -31,7 +30,6 @@
 @ cdecl GetTextMetrics(ptr ptr) RosDrv_GetTextMetrics
 @ cdecl LineTo(ptr long long) RosDrv_LineTo
 @ cdecl PaintRgn(ptr long) RosDrv_PaintRgn
-@ cdecl PatBlt(ptr long long long long long) RosDrv_PatBlt
 @ cdecl Pie(ptr long long long long long long long long) RosDrv_Pie
 @ cdecl PolyPolygon(ptr ptr ptr long) RosDrv_PolyPolygon
 @ cdecl PolyPolyline(ptr ptr ptr long) RosDrv_PolyPolyline




More information about the Ros-diffs mailing list