Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
6efe40b3
Commit
6efe40b3
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 LsaLogonUser stub.
parent
0c6e2c20
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
lsa.c
dlls/secur32/lsa.c
+15
-0
secur32.spec
dlls/secur32/secur32.spec
+1
-1
No files found.
dlls/secur32/lsa.c
View file @
6efe40b3
...
...
@@ -76,6 +76,21 @@ NTSTATUS WINAPI LsaGetLogonSessionData(PLUID LogonId,
return
STATUS_SUCCESS
;
}
NTSTATUS
WINAPI
LsaLogonUser
(
HANDLE
LsaHandle
,
PLSA_STRING
OriginName
,
SECURITY_LOGON_TYPE
LogonType
,
ULONG
AuthenticationPackage
,
PVOID
AuthenticationInformation
,
ULONG
AuthenticationInformationLength
,
PTOKEN_GROUPS
LocalGroups
,
PTOKEN_SOURCE
SourceContext
,
PVOID
*
ProfileBuffer
,
PULONG
ProfileBufferLength
,
PLUID
LogonId
,
PHANDLE
Token
,
PQUOTA_LIMITS
Quotas
,
PNTSTATUS
SubStatus
)
{
FIXME
(
"%p %p %d %d %p %d %p %p %p %p %p %p %p %p stub
\n
"
,
LsaHandle
,
OriginName
,
LogonType
,
AuthenticationPackage
,
AuthenticationInformation
,
AuthenticationInformationLength
,
LocalGroups
,
SourceContext
,
ProfileBuffer
,
ProfileBufferLength
,
LogonId
,
Token
,
Quotas
,
SubStatus
);
return
STATUS_SUCCESS
;
}
NTSTATUS
WINAPI
LsaLookupAuthenticationPackage
(
HANDLE
LsaHandle
,
PLSA_STRING
PackageName
,
PULONG
AuthenticationPackage
)
{
...
...
dlls/secur32/secur32.spec
View file @
6efe40b3
...
...
@@ -38,7 +38,7 @@
@ stdcall LsaEnumerateLogonSessions(ptr ptr)
@ stdcall LsaFreeReturnBuffer(ptr)
@ stdcall LsaGetLogonSessionData(ptr ptr)
@ st
ub LsaLogonUser
@ st
dcall LsaLogonUser(ptr ptr long long ptr long ptr ptr ptr ptr ptr ptr ptr ptr)
@ stdcall LsaLookupAuthenticationPackage(ptr ptr ptr)
@ stub LsaRegisterLogonProcess
@ stub LsaRegisterPolicyChangeNotification
...
...
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