Commit e7df38c2 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

rpcrt4: Add a stub for RpcMgmtSetServerStackSize.

parent 52aaddcd
...@@ -997,10 +997,19 @@ RPC_STATUS WINAPI RpcMgmtEpEltInqBegin(RPC_BINDING_HANDLE Binding, unsigned long ...@@ -997,10 +997,19 @@ RPC_STATUS WINAPI RpcMgmtEpEltInqBegin(RPC_BINDING_HANDLE Binding, unsigned long
} }
/*********************************************************************** /***********************************************************************
* RpcMgmtEpEltInqBegin (RPCRT4.@) * RpcMgmtIsServerListening (RPCRT4.@)
*/ */
RPC_STATUS WINAPI RpcMgmtIsServerListening(RPC_BINDING_HANDLE Binding) RPC_STATUS WINAPI RpcMgmtIsServerListening(RPC_BINDING_HANDLE Binding)
{ {
FIXME("(%p): stub\n", Binding); FIXME("(%p): stub\n", Binding);
return RPC_S_INVALID_BINDING; return RPC_S_INVALID_BINDING;
} }
/***********************************************************************
* RpcMgmtSetServerStackSize (RPCRT4.@)
*/
RPC_STATUS WINAPI RpcMgmtSetServerStackSize(unsigned int ThreadStackSize)
{
FIXME("(0x%x): stub\n", ThreadStackSize);
return RPC_S_OK;
}
...@@ -441,7 +441,7 @@ ...@@ -441,7 +441,7 @@
@ stub RpcMgmtSetCancelTimeout @ stub RpcMgmtSetCancelTimeout
@ stdcall RpcMgmtSetComTimeout(ptr long) @ stdcall RpcMgmtSetComTimeout(ptr long)
@ stub RpcMgmtSetParameter # win9x @ stub RpcMgmtSetParameter # win9x
@ stub RpcMgmtSetServerStackSize @ stdcall RpcMgmtSetServerStackSize(long)
@ stub RpcMgmtStatsVectorFree @ stub RpcMgmtStatsVectorFree
@ stdcall RpcMgmtStopServerListening(ptr) @ stdcall RpcMgmtStopServerListening(ptr)
@ stdcall RpcMgmtWaitServerListen() @ stdcall RpcMgmtWaitServerListen()
......
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