Alistair Leslie-Hughes : oleaut32: Implement ITypeInfo_GetNames Stub/Proxy.

Alexandre Julliard julliard at winehq.org
Tue Feb 22 10:36:11 CST 2011


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

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Fri Feb 18 12:04:56 2011 +1100

oleaut32: Implement ITypeInfo_GetNames Stub/Proxy.

---

 dlls/oleaut32/usrmarshal.c |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/dlls/oleaut32/usrmarshal.c b/dlls/oleaut32/usrmarshal.c
index cc4d2e7..b553f40 100644
--- a/dlls/oleaut32/usrmarshal.c
+++ b/dlls/oleaut32/usrmarshal.c
@@ -1598,8 +1598,9 @@ HRESULT CALLBACK ITypeInfo_GetNames_Proxy(
     UINT cMaxNames,
     UINT* pcNames)
 {
-  FIXME("not implemented\n");
-  return E_FAIL;
+    TRACE("(%p, %08x, %p, %d, %p)\n", This, memid, rgBstrNames, cMaxNames, pcNames);
+
+    return ITypeInfo_RemoteGetNames_Proxy(This, memid, rgBstrNames, cMaxNames, pcNames);
 }
 
 HRESULT __RPC_STUB ITypeInfo_GetNames_Stub(
@@ -1609,8 +1610,9 @@ HRESULT __RPC_STUB ITypeInfo_GetNames_Stub(
     UINT cMaxNames,
     UINT* pcNames)
 {
-  FIXME("not implemented\n");
-  return E_FAIL;
+    TRACE("(%p, %08x, %p, %d, %p)\n", This, memid, rgBstrNames, cMaxNames, pcNames);
+
+    return ITypeInfo_GetNames(This, memid, rgBstrNames, cMaxNames, pcNames);
 }
 
 HRESULT CALLBACK ITypeInfo_GetIDsOfNames_Proxy(




More information about the wine-cvs mailing list