RPCRT: add stub implementation for CreateProxyFromTypeInfo

Mike McCormack mike at codeweavers.com
Sun Oct 17 02:56:47 CDT 2004


ChangeLog:
* add stub implementation for CreateProxyFromTypeInfo
-------------- next part --------------
Index: dlls/rpcrt4/rpcrt4.spec
===================================================================
RCS file: /home/wine/wine/dlls/rpcrt4/rpcrt4.spec,v
retrieving revision 1.49
diff -u -r1.49 rpcrt4.spec
--- dlls/rpcrt4/rpcrt4.spec	14 Apr 2004 04:28:27 -0000	1.49
+++ dlls/rpcrt4/rpcrt4.spec	17 Oct 2004 06:13:45 -0000
@@ -573,7 +573,7 @@
 @ stub I_RpcltDebugSetPDUFilter
 @ stub I_UuidCreate
 
-@ stub CreateProxyFromTypeInfo
+@ stdcall CreateProxyFromTypeInfo(ptr ptr ptr ptr ptr)
 @ stub CreateStubFromTypeInfo
 @ stub PerformRpcInitialization
 @ stub StartServiceIfNecessary # win9x
Index: dlls/rpcrt4/cproxy.c
===================================================================
RCS file: /home/wine/wine/dlls/rpcrt4/cproxy.c,v
retrieving revision 1.12
diff -u -r1.12 cproxy.c
--- dlls/rpcrt4/cproxy.c	7 Oct 2004 03:06:49 -0000	1.12
+++ dlls/rpcrt4/cproxy.c	17 Oct 2004 06:13:46 -0000
@@ -332,3 +332,11 @@
   return IUnknown_Release(This->pUnkOuter);
 #endif
 }
+
+HRESULT WINAPI
+CreateProxyFromTypeInfo( LPTYPEINFO pTypeInfo, LPUNKNOWN pUnkOuter, REFIID riid,
+                         LPRPCPROXYBUFFER *ppProxy, LPVOID *ppv )
+{
+    FIXME("%p %p %s %p %p\n", pTypeInfo, pUnkOuter, debugstr_guid(riid), ppProxy, ppv);
+    return E_NOTIMPL;
+}


More information about the wine-patches mailing list