Added partial stub for GetTransform.

oldstable
Alexandre Julliard 2003-05-11 03:31:53 +00:00
parent bd69422ca8
commit ebc9abd1a1
2 changed files with 12 additions and 1 deletions

View File

@ -273,7 +273,7 @@
@ stdcall GetTextFaceW(long long ptr)
@ stdcall GetTextMetricsA(long ptr)
@ stdcall GetTextMetricsW(long ptr)
@ stub GetTransform
@ stdcall GetTransform(long long ptr)
@ stdcall GetViewportExtEx(long ptr)
@ stdcall GetViewportOrgEx(long ptr)
@ stdcall GetWinMetaFileBits(long long ptr long long)

View File

@ -988,6 +988,17 @@ BOOL WINAPI GetWorldTransform( HDC hdc, LPXFORM xform )
}
/***********************************************************************
* GetTransform (GDI32.@)
*/
BOOL WINAPI GetTransform( HDC hdc, DWORD unknown, LPXFORM xform )
{
if (unknown == 0x0203) return GetWorldTransform( hdc, xform );
ERR("stub: don't know what to do for code %lx\n", unknown );
return FALSE;
}
/***********************************************************************
* SetWorldTransform (GDI32.@)
*/