inkobj: Partial implementation of InkCollector_GetTypeInfoCount

John Klehm xixsimplicityxix at gmail.com
Sat Aug 25 01:06:09 CDT 2007


Same as before.

-John Klehm
-------------- next part --------------
From b8634637dfd4c14744247eeb9874fea5f029bea3 Mon Sep 17 00:00:00 2001
From: John Klehm <xixsimplicityxix at gmail.com>
Date: Sat, 25 Aug 2007 00:31:16 -0500
Subject: inkobj: Partial implementation of InkCollector_GetTypeInfoCount

---
 dlls/inkobj/inkcollector.c |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/dlls/inkobj/inkcollector.c b/dlls/inkobj/inkcollector.c
index 4ce49cd..25a9170 100644
--- a/dlls/inkobj/inkcollector.c
+++ b/dlls/inkobj/inkcollector.c
@@ -75,7 +75,15 @@ static ULONG WINAPI InkCollector_Release(
 static HRESULT WINAPI InkCollector_GetTypeInfoCount(
     IInkCollector* This, UINT* pctinfo)
 {
-    FIXME("stub!\n");
+    FIXME("partial stub!\n");
+
+    if (pctinfo)
+    {
+        /* 0 if you DONT provide an interface description
+         * 1 if you DO provide an interface description */
+        *pctinfo = 0; 
+    }
+
     return S_OK;
 }
 
-- 
1.5.1.6



More information about the wine-patches mailing list