Stubs for RpcServerUseProtseqA, RpcServerUseProtseqW.

oldstable
Greg Turner 2002-10-21 23:41:35 +00:00 committed by Alexandre Julliard
parent b0719b1273
commit b71535ebfd
3 changed files with 28 additions and 2 deletions

View File

@ -435,6 +435,24 @@ RPC_STATUS WINAPI RpcServerUseProtseqEpExW( LPWSTR Protseq, UINT MaxCalls, LPWST
return RPCRT4_use_protseq(ps);
}
/***********************************************************************
* RpcServerUseProtseqA (RPCRT4.@)
*/
RPC_STATUS WINAPI RpcServerUseProtseqA(LPSTR Protseq, unsigned int MaxCalls, void *SecurityDescriptor)
{
FIXME("stub\n");
return RPC_S_OK;
}
/***********************************************************************
* RpcServerUseProtseqW (RPCRT4.@)
*/
RPC_STATUS WINAPI RpcServerUseProtseqW(LPWSTR Protseq, unsigned int MaxCalls, void *SecurityDescriptor)
{
FIXME("stub\n");
return RPC_S_OK;
}
/***********************************************************************
* RpcServerRegisterIf (RPCRT4.@)
*/

View File

@ -121,8 +121,8 @@ init RPCRT4_LibMain
@ stub RpcServerUseAllProtseqsEx
@ stub RpcServerUseAllProtseqsIf
@ stub RpcServerUseAllProtseqsIfEx
@ stub RpcServerUseProtseqA
@ stub RpcServerUseProtseqW
@ stdcall RpcServerUseProtseqA(str long ptr) RpcServerUseProtseqA
@ stdcall RpcServerUseProtseqW(wstr long ptr) RpcServerUseProtseqW
@ stub RpcServerUseProtseqExA
@ stub RpcServerUseProtseqExW
@ stdcall RpcServerUseProtseqEpA(str long str ptr) RpcServerUseProtseqEpA

View File

@ -183,6 +183,14 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
RpcServerRegisterIf2( RPC_IF_HANDLE IfSpec, UUID* MgrTypeUuid, RPC_MGR_EPV* MgrEpv,
UINT Flags, UINT MaxCalls, UINT MaxRpcSize, RPC_IF_CALLBACK_FN* IfCallbackFn );
RPCRTAPI RPC_STATUS RPC_ENTRY
RpcServerUseProtseqA(LPSTR Protseq, unsigned int MaxCalls, void *SecurityDescriptor);
RPCRTAPI RPC_STATUS RPC_ENTRY
RpcServerUseProtseqW(LPWSTR Protseq, unsigned int MaxCalls, void *SecurityDescriptor);
#define RpcServerUseProtseq WINELIB_NAME_AW(RpcServerUseProtseq)
RPCRTAPI RPC_STATUS RPC_ENTRY
RpcServerUseProtseqEpA( LPSTR Protseq, UINT MaxCalls, LPSTR Endpoint, LPVOID SecurityDescriptor );
RPCRTAPI RPC_STATUS RPC_ENTRY