reactos/dll/win32/schannel/stubs.c
Amine Khaldi 18a81d5d1e [SHELL-EXPERIMENTS]
* Sync up to trunk head (r64124).

svn path=/branches/shell-experiments/; revision=64126
2014-09-12 19:21:19 +00:00

28 lines
726 B
C

#include "precomp.h"
SECURITY_STATUS WINAPI schan_AcceptSecurityContext(
PCredHandle phCredential, PCtxtHandle phContext, PSecBufferDesc pInput,
ULONG fContextReq, ULONG TargetDataRep, PCtxtHandle phNewContext,
PSecBufferDesc pOutput, ULONG *pfContextAttr, PTimeStamp ptsExpiry)
{
return SEC_E_UNSUPPORTED_FUNCTION;
}
SECURITY_STATUS WINAPI schan_ApplyControlToken(PCtxtHandle phContext,
PSecBufferDesc pInput)
{
return SEC_E_UNSUPPORTED_FUNCTION;
}
SECURITY_STATUS WINAPI schan_CompleteAuthToken(PCtxtHandle phContext,
PSecBufferDesc pToken)
{
return SEC_E_UNSUPPORTED_FUNCTION;
}
SECURITY_STATUS WINAPI schan_ImpersonateSecurityContext(PCtxtHandle phContext)
{
return SEC_E_UNSUPPORTED_FUNCTION;
}