Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0c6e2c20
Commit
0c6e2c20
authored
Aug 29, 2007
by
Kai Blin
Committed by
Alexandre Julliard
Aug 30, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Implement LsaGetLogonSessionData stub.
parent
8942443a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
1 deletion
+23
-1
lsa.c
dlls/secur32/lsa.c
+7
-0
secur32.spec
dlls/secur32/secur32.spec
+1
-1
ntsecapi.h
include/ntsecapi.h
+15
-0
No files found.
dlls/secur32/lsa.c
View file @
0c6e2c20
...
...
@@ -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
)
{
...
...
dlls/secur32/secur32.spec
View file @
0c6e2c20
...
...
@@ -37,7 +37,7 @@
@ stdcall LsaDeregisterLogonProcess(long)
@ stdcall LsaEnumerateLogonSessions(ptr ptr)
@ stdcall LsaFreeReturnBuffer(ptr)
@ st
ub LsaGetLogonSessionData
@ st
dcall LsaGetLogonSessionData(ptr ptr)
@ stub LsaLogonUser
@ stdcall LsaLookupAuthenticationPackage(ptr ptr ptr)
@ stub LsaRegisterLogonProcess
...
...
include/ntsecapi.h
View file @
0c6e2c20
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment