gdi32: Add an empty ExtEscape DIB driver entry point.
This commit is contained in:
parent
56331e2a9a
commit
867be0e3e3
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue