Commit 867be0e3 authored by Alexandre Julliard's avatar Alexandre Julliard

gdi32: Add an empty ExtEscape DIB driver entry point.

parent 56331e2a
...@@ -418,6 +418,15 @@ static INT dibdrv_DescribePixelFormat( PHYSDEV dev, INT fmt, UINT size, PIXELFOR ...@@ -418,6 +418,15 @@ static INT dibdrv_DescribePixelFormat( PHYSDEV dev, INT fmt, UINT size, PIXELFOR
} }
/*********************************************************************** /***********************************************************************
* dibdrv_ExtEscape
*/
static INT dibdrv_ExtEscape( PHYSDEV dev, INT escape, INT in_size, const void *in_data,
INT out_size, void *out_data )
{
return 0;
}
/***********************************************************************
* dibdrv_GetDeviceGammaRamp * dibdrv_GetDeviceGammaRamp
*/ */
static BOOL dibdrv_GetDeviceGammaRamp( PHYSDEV dev, void *ramp ) static BOOL dibdrv_GetDeviceGammaRamp( PHYSDEV dev, void *ramp )
...@@ -601,7 +610,7 @@ const struct gdi_dc_funcs dib_driver = ...@@ -601,7 +610,7 @@ const struct gdi_dc_funcs dib_driver =
NULL, /* pEnumICMProfiles */ NULL, /* pEnumICMProfiles */
NULL, /* pExcludeClipRect */ NULL, /* pExcludeClipRect */
NULL, /* pExtDeviceMode */ NULL, /* pExtDeviceMode */
NULL, /* pExtEscape */ dibdrv_ExtEscape, /* pExtEscape */
dibdrv_ExtFloodFill, /* pExtFloodFill */ dibdrv_ExtFloodFill, /* pExtFloodFill */
NULL, /* pExtSelectClipRgn */ NULL, /* pExtSelectClipRgn */
dibdrv_ExtTextOut, /* pExtTextOut */ dibdrv_ExtTextOut, /* pExtTextOut */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment