Added a set option to ModifyWorldTransform.

svn path=/trunk/; revision=28291
This commit is contained in:
James Tabor 2007-08-11 18:15:02 +00:00
parent 01d9041103
commit edaf84b215

View file

@ -192,6 +192,11 @@ IntGdiModifyWorldTransform(PDC pDc,
IntGdiCombineTransform(&pDc->w.xformWorld2Wnd, &pDc->w.xformWorld2Wnd, lpXForm);
break;
case MWT_MAX+1: // Must be MWT_SET????
pDc->w.xformWorld2Wnd = *lpXForm; // Do it like Wine.
DC_UpdateXforms(pDc); // Good wine port here too.
break;
default:
SetLastWin32Error(ERROR_INVALID_PARAMETER);
return FALSE;