Skip to content
Snippets Groups Projects
Commit bdc5a341 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard
Browse files

rpcrt4: Add a stub for I_RpcGetCurrentCallHandle.

parent b9c92e95
No related branches found
No related tags found
No related merge requests found
...@@ -1121,3 +1121,12 @@ RPC_STATUS WINAPI RpcMgmtSetServerStackSize(ULONG ThreadStackSize) ...@@ -1121,3 +1121,12 @@ RPC_STATUS WINAPI RpcMgmtSetServerStackSize(ULONG ThreadStackSize)
FIXME("(0x%x): stub\n", ThreadStackSize); FIXME("(0x%x): stub\n", ThreadStackSize);
return RPC_S_OK; return RPC_S_OK;
} }
/***********************************************************************
* I_RpcGetCurrentCallHandle (RPCRT4.@)
*/
RPC_BINDING_HANDLE WINAPI I_RpcGetCurrentCallHandle(void)
{
FIXME("\n");
return NULL;
}
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
@ stub I_RpcGetAssociationContext @ stub I_RpcGetAssociationContext
@ stdcall I_RpcGetBuffer(ptr) @ stdcall I_RpcGetBuffer(ptr)
@ stub I_RpcGetBufferWithObject @ stub I_RpcGetBufferWithObject
@ stub I_RpcGetCurrentCallHandle @ stdcall I_RpcGetCurrentCallHandle()
@ stub I_RpcGetExtendedError @ stub I_RpcGetExtendedError
@ stub I_RpcGetServerContextList @ stub I_RpcGetServerContextList
@ stub I_RpcGetThreadEvent # win9x @ stub I_RpcGetThreadEvent # win9x
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment