Aric Stewart : gdiplus: Stub implementation of GdipNewInstalledFontCollection.

Alexandre Julliard julliard at winehq.org
Tue Nov 4 07:29:00 CST 2008


Module: wine
Branch: master
Commit: 799a76e8c96d0471eb0cd5da2ade4757ed154b72
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=799a76e8c96d0471eb0cd5da2ade4757ed154b72

Author: Aric Stewart <aric at codeweavers.com>
Date:   Mon Nov  3 11:39:16 2008 -0600

gdiplus: Stub implementation of GdipNewInstalledFontCollection.

---

 dlls/gdiplus/font.c       |   11 +++++++++++
 dlls/gdiplus/gdiplus.spec |    2 +-
 2 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/dlls/gdiplus/font.c b/dlls/gdiplus/font.c
index 210ebff..32713c7 100644
--- a/dlls/gdiplus/font.c
+++ b/dlls/gdiplus/font.c
@@ -849,3 +849,14 @@ GpStatus WINGDIPAPI GdipGetFontCollectionFamilyList(
 
     return NotImplemented;
 }
+
+GpStatus WINGDIPAPI GdipNewInstalledFontCollection(
+        GpFontCollection** fontCollection)
+{
+    FIXME("stub: %p\n",fontCollection);
+
+    if (!fontCollection)
+        return InvalidParameter;
+
+    return NotImplemented;
+}
diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec
index fea80a4..5c47126 100644
--- a/dlls/gdiplus/gdiplus.spec
+++ b/dlls/gdiplus/gdiplus.spec
@@ -448,7 +448,7 @@
 @ stub GdipMultiplyPenTransform
 @ stub GdipMultiplyTextureTransform
 @ stdcall GdipMultiplyWorldTransform(ptr ptr long)
-@ stub GdipNewInstalledFontCollection
+@ stdcall GdipNewInstalledFontCollection(ptr)
 @ stdcall GdipNewPrivateFontCollection(ptr)
 @ stdcall GdipPathIterCopyData(ptr ptr ptr ptr long long)
 @ stdcall GdipPathIterEnumerate(ptr ptr ptr ptr long)




More information about the wine-cvs mailing list