From 817eecf900c3eeda4ff8af9adc56e4cfd9a28ec2 Mon Sep 17 00:00:00 2001 From: Sylvain Petreolle Date: Fri, 1 Jul 2016 19:55:32 +0000 Subject: [PATCH] [SECUR32] Enable LsaEnumerateLogonSessions and LsaGetLogonSessionData implemtations, used by VirtualBox guest additions. CORE-7424 svn path=/trunk/; revision=71715 --- reactos/dll/win32/secur32/lsalpc.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/reactos/dll/win32/secur32/lsalpc.c b/reactos/dll/win32/secur32/lsalpc.c index ab7a7e168e1..882243ef345 100644 --- a/reactos/dll/win32/secur32/lsalpc.c +++ b/reactos/dll/win32/secur32/lsalpc.c @@ -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 }