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
252385db
Commit
252385db
authored
Sep 19, 2017
by
Alex Henrie
Committed by
Alexandre Julliard
Sep 20, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add stub for LsaLookupPrivilegeName.
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3589b234
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
lsa.c
dlls/advapi32/lsa.c
+13
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
252385db
...
...
@@ -469,7 +469,7 @@
@ stdcall LsaLookupNames(long long ptr ptr ptr)
@ stdcall LsaLookupNames2(ptr long long ptr ptr ptr)
@ stub LsaLookupPrivilegeDisplayName
# @ stub LsaLookupPrivilegeName
@ stdcall LsaLookupPrivilegeName(long ptr ptr)
# @ stub LsaLookupPrivilegeValue
@ stdcall LsaLookupSids(ptr long ptr ptr ptr)
# @ stub LsaLookupSids2
...
...
dlls/advapi32/lsa.c
View file @
252385db
...
...
@@ -973,3 +973,16 @@ NTSTATUS WINAPI LsaUnregisterPolicyChangeNotification(
FIXME
(
"(%d,%p) stub
\n
"
,
class
,
event
);
return
STATUS_SUCCESS
;
}
/******************************************************************************
* LsaLookupPrivilegeName [ADVAPI32.@]
*
*/
NTSTATUS
WINAPI
LsaLookupPrivilegeName
(
LSA_HANDLE
handle
,
LUID
*
luid
,
UNICODE_STRING
**
name
)
{
FIXME
(
"(%p,%p,%p) stub
\n
"
,
handle
,
luid
,
name
);
return
STATUS_NO_SUCH_PRIVILEGE
;
}
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