1 2 #include "precomp.h" 3 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 12 SECURITY_STATUS WINAPI schan_ApplyControlToken(PCtxtHandle phContext, 13 PSecBufferDesc pInput) 14 { 15 return SEC_E_UNSUPPORTED_FUNCTION; 16 } 17 18 SECURITY_STATUS WINAPI schan_CompleteAuthToken(PCtxtHandle phContext, 19 PSecBufferDesc pToken) 20 { 21 return SEC_E_UNSUPPORTED_FUNCTION; 22 } 23 24 SECURITY_STATUS WINAPI schan_ImpersonateSecurityContext(PCtxtHandle phContext) 25 { 26 return SEC_E_UNSUPPORTED_FUNCTION; 27 } 28