Commit 1fd7159c authored by Alexandre Julliard's avatar Alexandre Julliard

gdi32: Disable SetDCOrg16.

parent 16da7692
...@@ -3662,13 +3662,8 @@ void WINAPI SetDCState16( HDC16 hdc, HDC16 hdcs ) ...@@ -3662,13 +3662,8 @@ void WINAPI SetDCState16( HDC16 hdc, HDC16 hdcs )
*/ */
DWORD WINAPI SetDCOrg16( HDC16 hdc16, INT16 x, INT16 y ) DWORD WINAPI SetDCOrg16( HDC16 hdc16, INT16 x, INT16 y )
{ {
DWORD prevOrg = 0; FIXME( "%04x %d,%d no longer supported\n", hdc16, x, y );
HDC hdc = HDC_32( hdc16 ); return 0;
DC *dc = get_dc_ptr( hdc );
if (!dc) return 0;
if (dc->funcs->pSetDCOrg) prevOrg = dc->funcs->pSetDCOrg( dc->physDev, x, y );
release_dc_ptr( dc );
return prevOrg;
} }
......
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