Commit 1380f0ac authored by Alexandre Julliard's avatar Alexandre Julliard

gdi32: Remove Get/SetDCState16 implementation, it should not be used by apps.

parent 88e01969
......@@ -3388,7 +3388,8 @@ BOOL16 WINAPI LPtoDP16( HDC16 hdc, LPPOINT16 points, INT16 count )
*/
HDC16 WINAPI GetDCState16( HDC16 hdc )
{
return HDC_16( get_dc_state( HDC_32(hdc) ));
ERR( "no longer supported\n" );
return 0;
}
......@@ -3397,7 +3398,7 @@ HDC16 WINAPI GetDCState16( HDC16 hdc )
*/
void WINAPI SetDCState16( HDC16 hdc, HDC16 hdcs )
{
set_dc_state( HDC_32(hdc), HDC_32(hdcs) );
ERR( "no longer supported\n" );
}
/***********************************************************************
......
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