Robert Shearman : oleaut32: Implement GetTypeInfoCount for standard fonts.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jul 28 07:15:29 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 3435560317671e72ac1ff3a171ff079a2aab8304
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=3435560317671e72ac1ff3a171ff079a2aab8304

Author: Robert Shearman <rob at codeweavers.com>
Date:   Fri Jul 28 01:26:01 2006 +0100

oleaut32: Implement GetTypeInfoCount for standard fonts.

---

 dlls/oleaut32/olefont.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/oleaut32/olefont.c b/dlls/oleaut32/olefont.c
index 880e740..bdde164 100644
--- a/dlls/oleaut32/olefont.c
+++ b/dlls/oleaut32/olefont.c
@@ -1299,9 +1299,10 @@ static HRESULT WINAPI OLEFontImpl_GetTyp
   unsigned int* pctinfo)
 {
   OLEFontImpl *this = impl_from_IDispatch(iface);
-  FIXME("(%p)->(%p): Stub\n", this, pctinfo);
+  TRACE("(%p)->(%p)\n", this, pctinfo);
+  *pctinfo = 1;
 
-  return E_NOTIMPL;
+  return S_OK;
 }
 
 /************************************************************************




More information about the wine-cvs mailing list