mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
add stub for InitializeSecurityContextW
svn path=/trunk/; revision=30688
This commit is contained in:
parent
119d8d8d28
commit
6691091e28
2 changed files with 21 additions and 1 deletions
|
@ -40,7 +40,7 @@ GetUserNameExW@12
|
||||||
;@InitSecurityInterfaceA
|
;@InitSecurityInterfaceA
|
||||||
InitSecurityInterfaceW@0
|
InitSecurityInterfaceW@0
|
||||||
InitializeSecurityContextA@48
|
InitializeSecurityContextA@48
|
||||||
;InitializeSecurityContextW@48
|
InitializeSecurityContextW@48
|
||||||
LsaEnumerateLogonSessions@8
|
LsaEnumerateLogonSessions@8
|
||||||
LsaGetLogonSessionData@8
|
LsaGetLogonSessionData@8
|
||||||
LsaRegisterPolicyChangeNotification@8
|
LsaRegisterPolicyChangeNotification@8
|
||||||
|
|
|
@ -156,6 +156,26 @@ AcquireCredentialsHandleW (
|
||||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
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
|
SECURITY_STATUS
|
||||||
WINAPI
|
WINAPI
|
||||||
|
|
Loading…
Reference in a new issue