add stub for InitializeSecurityContextW

svn path=/trunk/; revision=30688
This commit is contained in:
Christoph von Wittich 2007-11-23 09:10:32 +00:00
parent 119d8d8d28
commit 6691091e28
2 changed files with 21 additions and 1 deletions

View file

@ -40,7 +40,7 @@ GetUserNameExW@12
;@InitSecurityInterfaceA
InitSecurityInterfaceW@0
InitializeSecurityContextA@48
;InitializeSecurityContextW@48
InitializeSecurityContextW@48
LsaEnumerateLogonSessions@8
LsaGetLogonSessionData@8
LsaRegisterPolicyChangeNotification@8

View file

@ -156,6 +156,26 @@ AcquireCredentialsHandleW (
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
WINAPI
InitializeSecurityContextW (
PCredHandle phCred,
PCtxtHandle phContext,
SEC_WCHAR* pszTarget,
ULONG fContextReq,
ULONG Reserved,
ULONG TargetData,
PSecBufferDesc pInput,
ULONG Reserved2,
PCtxtHandle phNewContext,
PSecBufferDesc pOut,
PULONG pfContextAttributes,
PTimeStamp pExpires
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
WINAPI