Module: wine Branch: refs/heads/master Commit: e7df38c27f78bf9fb00073f40955190c95804b2b URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=e7df38c27f78bf9fb00073f4...
Author: Robert Shearman rob@codeweavers.com Date: Fri Jun 30 11:07:07 2006 +0100
rpcrt4: Add a stub for RpcMgmtSetServerStackSize.
---
dlls/rpcrt4/rpc_server.c | 11 ++++++++++- dlls/rpcrt4/rpcrt4.spec | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/dlls/rpcrt4/rpc_server.c b/dlls/rpcrt4/rpc_server.c index 3f3c9ca..7dceb2d 100644 --- a/dlls/rpcrt4/rpc_server.c +++ b/dlls/rpcrt4/rpc_server.c @@ -997,10 +997,19 @@ RPC_STATUS WINAPI RpcMgmtEpEltInqBegin(R }
/*********************************************************************** - * RpcMgmtEpEltInqBegin (RPCRT4.@) + * RpcMgmtIsServerListening (RPCRT4.@) */ RPC_STATUS WINAPI RpcMgmtIsServerListening(RPC_BINDING_HANDLE Binding) { FIXME("(%p): stub\n", 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; +} diff --git a/dlls/rpcrt4/rpcrt4.spec b/dlls/rpcrt4/rpcrt4.spec index cd1bcf2..5141165 100644 --- a/dlls/rpcrt4/rpcrt4.spec +++ b/dlls/rpcrt4/rpcrt4.spec @@ -441,7 +441,7 @@ # 9x version of I_RpcBindingSetAsync has @ stub RpcMgmtSetCancelTimeout @ stdcall RpcMgmtSetComTimeout(ptr long) @ stub RpcMgmtSetParameter # win9x -@ stub RpcMgmtSetServerStackSize +@ stdcall RpcMgmtSetServerStackSize(long) @ stub RpcMgmtStatsVectorFree @ stdcall RpcMgmtStopServerListening(ptr) @ stdcall RpcMgmtWaitServerListen()