rpcrt4: Fix RpcMgmtSetServerStackSize prototype.

This commit is contained in:
Thomas Weidenmueller 2006-09-27 15:03:20 +02:00 committed by Alexandre Julliard
parent 93c37404f4
commit bc0f9c49b0
1 changed files with 2 additions and 2 deletions

View File

@ -1008,8 +1008,8 @@ RPC_STATUS WINAPI RpcMgmtIsServerListening(RPC_BINDING_HANDLE Binding)
/***********************************************************************
* RpcMgmtSetServerStackSize (RPCRT4.@)
*/
RPC_STATUS WINAPI RpcMgmtSetServerStackSize(unsigned int ThreadStackSize)
RPC_STATUS WINAPI RpcMgmtSetServerStackSize(unsigned long ThreadStackSize)
{
FIXME("(0x%x): stub\n", ThreadStackSize);
FIXME("(0x%lx): stub\n", ThreadStackSize);
return RPC_S_OK;
}