gdi32: Add an empty ExtEscape DIB driver entry point.

This commit is contained in:
Alexandre Julliard 2012-01-06 17:53:42 +01:00
parent 56331e2a9a
commit 867be0e3e3
1 changed files with 10 additions and 1 deletions

View File

@ -417,6 +417,15 @@ static INT dibdrv_DescribePixelFormat( PHYSDEV dev, INT fmt, UINT size, PIXELFOR
return 0;
}
/***********************************************************************
* 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
*/
@ -601,7 +610,7 @@ const struct gdi_dc_funcs dib_driver =
NULL, /* pEnumICMProfiles */
NULL, /* pExcludeClipRect */
NULL, /* pExtDeviceMode */
NULL, /* pExtEscape */
dibdrv_ExtEscape, /* pExtEscape */
dibdrv_ExtFloodFill, /* pExtFloodFill */
NULL, /* pExtSelectClipRgn */
dibdrv_ExtTextOut, /* pExtTextOut */