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

This commit is contained in:
Alexandre Julliard 2009-04-07 20:13:45 +02:00
parent 88e01969c2
commit 1380f0ac40
1 changed files with 3 additions and 2 deletions

View File

@ -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" );
}
/***********************************************************************