secur32: Implement LsaGetLogonSessionData stub.
This commit is contained in:
parent
8942443a42
commit
0c6e2c20bd
|
@ -69,6 +69,13 @@ NTSTATUS WINAPI LsaFreeReturnBuffer(PVOID Buffer)
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
NTSTATUS WINAPI LsaGetLogonSessionData(PLUID LogonId,
|
||||
PSECURITY_LOGON_SESSION_DATA* ppLogonSessionData)
|
||||
{
|
||||
FIXME("%p %p stub\n", LogonId, ppLogonSessionData);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
NTSTATUS WINAPI LsaLookupAuthenticationPackage(HANDLE LsaHandle,
|
||||
PLSA_STRING PackageName, PULONG AuthenticationPackage)
|
||||
{
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
@ stdcall LsaDeregisterLogonProcess(long)
|
||||
@ stdcall LsaEnumerateLogonSessions(ptr ptr)
|
||||
@ stdcall LsaFreeReturnBuffer(ptr)
|
||||
@ stub LsaGetLogonSessionData
|
||||
@ stdcall LsaGetLogonSessionData(ptr ptr)
|
||||
@ stub LsaLogonUser
|
||||
@ stdcall LsaLookupAuthenticationPackage(ptr ptr ptr)
|
||||
@ stub LsaRegisterLogonProcess
|
||||
|
|
|
@ -235,6 +235,21 @@ typedef struct _POLICY_MODIFICATION_INFO
|
|||
LARGE_INTEGER DatabaseCreationTime;
|
||||
} POLICY_MODIFICATION_INFO, *PPOLICY_MODIFICATION_INFO;
|
||||
|
||||
typedef struct _SECURITY_LOGON_SESSION_DATA {
|
||||
ULONG Size;
|
||||
LUID LogonId;
|
||||
LSA_UNICODE_STRING UserName;
|
||||
LSA_UNICODE_STRING LogonDomain;
|
||||
LSA_UNICODE_STRING AuthenticationPackage;
|
||||
ULONG LogonType;
|
||||
ULONG Session;
|
||||
PSID Sid;
|
||||
LARGE_INTEGER LogonTime;
|
||||
LSA_UNICODE_STRING LogonServer;
|
||||
LSA_UNICODE_STRING DnsDomainName;
|
||||
LSA_UNICODE_STRING Upn;
|
||||
} SECURITY_LOGON_SESSION_DATA, *PSECURITY_LOGON_SESSION_DATA;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
SID_NAME_USE Use;
|
||||
|
|
Loading…
Reference in New Issue