gdiplus: Stub GdipGetLineTransform.
This commit is contained in:
parent
85c0e83dc5
commit
2e4eb7144c
|
@ -1784,6 +1784,18 @@ GpStatus WINGDIPAPI GdipSetLineTransform(GpLineGradient *brush,
|
|||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetLineTransform(GpLineGradient *brush, GpMatrix *matrix)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
TRACE("(%p,%p)\n", brush, matrix);
|
||||
|
||||
if(!(calls++))
|
||||
FIXME("not implemented\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipScaleLineTransform(GpLineGradient *brush, REAL sx, REAL sy,
|
||||
GpMatrixOrder order)
|
||||
{
|
||||
|
|
|
@ -309,7 +309,7 @@
|
|||
@ stdcall GdipGetLineRect(ptr ptr)
|
||||
@ stdcall GdipGetLineRectI(ptr ptr)
|
||||
@ stdcall GdipGetLineSpacing(ptr long ptr)
|
||||
@ stub GdipGetLineTransform
|
||||
@ stdcall GdipGetLineTransform(ptr ptr)
|
||||
@ stdcall GdipGetLineWrapMode(ptr ptr)
|
||||
@ stdcall GdipGetLogFontA(ptr ptr ptr)
|
||||
@ stdcall GdipGetLogFontW(ptr ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue