Commit 5dec0a72 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Added some rpcrt4 stubs.

parent 3101315b
......@@ -10,3 +10,22 @@ debug_channels (ole)
@ stdcall UuidCreate(ptr) UuidCreate
@ stdcall RpcStringFreeA(ptr) RpcStringFreeA
@ stdcall UuidToStringA(ptr ptr) UuidToStringA
@ stub NdrCStdStubBuffer_Release
@ stub NdrDllGetClassObject
@ stub RpcRaiseException
@ stub NdrClientCall
@ stub NdrOleAllocate
@ stub NdrOleFree
@ stub IUnknown_QueryInterface_Proxy
@ stub IUnknown_AddRef_Proxy
@ stub IUnknown_Release_Proxy
@ stub CStdStubBuffer_QueryInterface
@ stub CStdStubBuffer_AddRef
@ stub CStdStubBuffer_Connect
@ stub CStdStubBuffer_Disconnect
@ stub CStdStubBuffer_Invoke
@ stub CStdStubBuffer_IsIIDSupported
@ stub CStdStubBuffer_CountRefs
@ stub CStdStubBuffer_DebugServerQueryInterface
@ stub CStdStubBuffer_DebugServerRelease
@ stdcall NdrDllRegisterProxy(long ptr ptr) NdrDllRegisterProxy
......@@ -314,3 +314,12 @@ RPC_STATUS WINAPI UuidToStringA(UUID *Uuid, unsigned char** StringUuid)
return S_OK; /*FIXME: this should be RPC_S_OK */
}
WINAPI HRESULT NdrDllRegisterProxy(
HMODULE hDll,
/*const ProxyFileInfo */ void **pProxyFileList,
const CLSID * pclsid
) {
FIXME("(%x,%p,%s), stub!\n",hDll,pProxyFileList,debugstr_guid(pclsid));
return S_OK;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment