Commit 799a76e8 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

gdiplus: Stub implementation of GdipNewInstalledFontCollection.

parent 87e12632
...@@ -849,3 +849,14 @@ GpStatus WINGDIPAPI GdipGetFontCollectionFamilyList( ...@@ -849,3 +849,14 @@ GpStatus WINGDIPAPI GdipGetFontCollectionFamilyList(
return NotImplemented; return NotImplemented;
} }
GpStatus WINGDIPAPI GdipNewInstalledFontCollection(
GpFontCollection** fontCollection)
{
FIXME("stub: %p\n",fontCollection);
if (!fontCollection)
return InvalidParameter;
return NotImplemented;
}
...@@ -448,7 +448,7 @@ ...@@ -448,7 +448,7 @@
@ stub GdipMultiplyPenTransform @ stub GdipMultiplyPenTransform
@ stub GdipMultiplyTextureTransform @ stub GdipMultiplyTextureTransform
@ stdcall GdipMultiplyWorldTransform(ptr ptr long) @ stdcall GdipMultiplyWorldTransform(ptr ptr long)
@ stub GdipNewInstalledFontCollection @ stdcall GdipNewInstalledFontCollection(ptr)
@ stdcall GdipNewPrivateFontCollection(ptr) @ stdcall GdipNewPrivateFontCollection(ptr)
@ stdcall GdipPathIterCopyData(ptr ptr ptr ptr long long) @ stdcall GdipPathIterCopyData(ptr ptr ptr ptr long long)
@ stdcall GdipPathIterEnumerate(ptr ptr ptr ptr long) @ stdcall GdipPathIterEnumerate(ptr ptr ptr ptr long)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment