mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
Added partial stub for GetTransform.
This commit is contained in:
parent
bd69422ca8
commit
ebc9abd1a1
@ -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)
|
||||
|
11
objects/dc.c
11
objects/dc.c
@ -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.@)
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user