gdi32: Disable SetDCOrg16.

oldstable
Alexandre Julliard 2009-11-17 12:42:16 +01:00
parent 16da76923d
commit 1fd7159cae
1 changed files with 2 additions and 7 deletions

View File

@ -3662,13 +3662,8 @@ void WINAPI SetDCState16( HDC16 hdc, HDC16 hdcs )
*/
DWORD WINAPI SetDCOrg16( HDC16 hdc16, INT16 x, INT16 y )
{
DWORD prevOrg = 0;
HDC hdc = HDC_32( hdc16 );
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;
FIXME( "%04x %d,%d no longer supported\n", hdc16, x, y );
return 0;
}