1
2 #include "precomp.h"
3
schan_AcceptSecurityContext(PCredHandle phCredential,PCtxtHandle phContext,PSecBufferDesc pInput,ULONG fContextReq,ULONG TargetDataRep,PCtxtHandle phNewContext,PSecBufferDesc pOutput,ULONG * pfContextAttr,PTimeStamp ptsExpiry)4 SECURITY_STATUS WINAPI schan_AcceptSecurityContext(
5 PCredHandle phCredential, PCtxtHandle phContext, PSecBufferDesc pInput,
6 ULONG fContextReq, ULONG TargetDataRep, PCtxtHandle phNewContext,
7 PSecBufferDesc pOutput, ULONG *pfContextAttr, PTimeStamp ptsExpiry)
8 {
9 return SEC_E_UNSUPPORTED_FUNCTION;
10 }
11
schan_ApplyControlToken(PCtxtHandle phContext,PSecBufferDesc pInput)12 SECURITY_STATUS WINAPI schan_ApplyControlToken(PCtxtHandle phContext,
13 PSecBufferDesc pInput)
14 {
15 return SEC_E_UNSUPPORTED_FUNCTION;
16 }
17
schan_CompleteAuthToken(PCtxtHandle phContext,PSecBufferDesc pToken)18 SECURITY_STATUS WINAPI schan_CompleteAuthToken(PCtxtHandle phContext,
19 PSecBufferDesc pToken)
20 {
21 return SEC_E_UNSUPPORTED_FUNCTION;
22 }
23
schan_ImpersonateSecurityContext(PCtxtHandle phContext)24 SECURITY_STATUS WINAPI schan_ImpersonateSecurityContext(PCtxtHandle phContext)
25 {
26 return SEC_E_UNSUPPORTED_FUNCTION;
27 }
28