Added some rpcrt4 stubs.
This commit is contained in:
parent
3101315b79
commit
5dec0a72bd
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue