Stubs for RpcServerUseProtseqA, RpcServerUseProtseqW.
This commit is contained in:
parent
b0719b1273
commit
b71535ebfd
|
@ -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.@)
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue