[SECUR32]

Enable LsaEnumerateLogonSessions and LsaGetLogonSessionData implemtations, used by VirtualBox guest additions.
CORE-7424

svn path=/trunk/; revision=71715
This commit is contained in:
Sylvain Petreolle 2016-07-01 19:55:32 +00:00
parent 22724e306e
commit 817eecf900

View file

@ -112,7 +112,6 @@ LsaEnumerateLogonSessions(
PULONG LogonSessionCount,
PLUID *LogonSessionList)
{
#if 1
LSA_API_MSG ApiMessage;
NTSTATUS Status;
@ -146,10 +145,6 @@ LsaEnumerateLogonSessions(
*LogonSessionList = ApiMessage.EnumLogonSessions.Reply.LogonSessionBuffer;
return Status;
#else
UNIMPLEMENTED;
return STATUS_NOT_IMPLEMENTED;
#endif
}
@ -162,7 +157,6 @@ LsaGetLogonSessionData(
PLUID LogonId,
PSECURITY_LOGON_SESSION_DATA *ppLogonSessionData)
{
#if 1
LSA_API_MSG ApiMessage;
PSECURITY_LOGON_SESSION_DATA SessionData;
NTSTATUS Status;
@ -207,10 +201,6 @@ LsaGetLogonSessionData(
*ppLogonSessionData = SessionData;
return Status;
#else
UNIMPLEMENTED;
return STATUS_NOT_IMPLEMENTED;
#endif
}