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
561a5b8f
Commit
561a5b8f
authored
Jun 09, 2022
by
Louis Lenders
Committed by
Alexandre Julliard
Jun 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Fix spec entry for LookupPrivilegeDisplayName{A,W}.
Signed-off-by:
Louis Lenders
<
xerox.xerox2000x@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e63cdb3c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
advapi32.spec
dlls/advapi32/advapi32.spec
+2
-2
security.c
dlls/advapi32/security.c
+3
-3
No files found.
dlls/advapi32/advapi32.spec
View file @
561a5b8f
...
@@ -433,8 +433,8 @@
...
@@ -433,8 +433,8 @@
@ stdcall LookupAccountSidLocalA(ptr ptr ptr ptr ptr ptr)
@ stdcall LookupAccountSidLocalA(ptr ptr ptr ptr ptr ptr)
@ stdcall LookupAccountSidLocalW(ptr ptr ptr ptr ptr ptr)
@ stdcall LookupAccountSidLocalW(ptr ptr ptr ptr ptr ptr)
@ stdcall LookupAccountSidW(wstr ptr ptr ptr ptr ptr ptr)
@ stdcall LookupAccountSidW(wstr ptr ptr ptr ptr ptr ptr)
@ stdcall LookupPrivilegeDisplayNameA(str str
s
tr ptr ptr)
@ stdcall LookupPrivilegeDisplayNameA(str str
p
tr ptr ptr)
@ stdcall LookupPrivilegeDisplayNameW(wstr wstr
ws
tr ptr ptr)
@ stdcall LookupPrivilegeDisplayNameW(wstr wstr
p
tr ptr ptr)
@ stdcall LookupPrivilegeNameA(str ptr ptr ptr)
@ stdcall LookupPrivilegeNameA(str ptr ptr ptr)
@ stdcall LookupPrivilegeNameW(wstr ptr ptr ptr)
@ stdcall LookupPrivilegeNameW(wstr ptr ptr ptr)
@ stdcall LookupPrivilegeValueA(str str ptr)
@ stdcall LookupPrivilegeValueA(str str ptr)
...
...
dlls/advapi32/security.c
View file @
561a5b8f
...
@@ -566,7 +566,7 @@ BOOL WINAPI LookupPrivilegeDisplayNameA( LPCSTR lpSystemName, LPCSTR lpName, LPS
...
@@ -566,7 +566,7 @@ BOOL WINAPI LookupPrivilegeDisplayNameA( LPCSTR lpSystemName, LPCSTR lpName, LPS
LPDWORD
cchDisplayName
,
LPDWORD
lpLanguageId
)
LPDWORD
cchDisplayName
,
LPDWORD
lpLanguageId
)
{
{
FIXME
(
"%s %s %s %p %p - stub
\n
"
,
debugstr_a
(
lpSystemName
),
debugstr_a
(
lpName
),
FIXME
(
"%s %s %s %p %p - stub
\n
"
,
debugstr_a
(
lpSystemName
),
debugstr_a
(
lpName
),
debugstr_a
(
lpDisplayName
)
,
cchDisplayName
,
lpLanguageId
);
lpDisplayName
,
cchDisplayName
,
lpLanguageId
);
return
FALSE
;
return
FALSE
;
}
}
...
@@ -574,8 +574,8 @@ BOOL WINAPI LookupPrivilegeDisplayNameA( LPCSTR lpSystemName, LPCSTR lpName, LPS
...
@@ -574,8 +574,8 @@ BOOL WINAPI LookupPrivilegeDisplayNameA( LPCSTR lpSystemName, LPCSTR lpName, LPS
BOOL
WINAPI
LookupPrivilegeDisplayNameW
(
LPCWSTR
lpSystemName
,
LPCWSTR
lpName
,
LPWSTR
lpDisplayName
,
BOOL
WINAPI
LookupPrivilegeDisplayNameW
(
LPCWSTR
lpSystemName
,
LPCWSTR
lpName
,
LPWSTR
lpDisplayName
,
LPDWORD
cchDisplayName
,
LPDWORD
lpLanguageId
)
LPDWORD
cchDisplayName
,
LPDWORD
lpLanguageId
)
{
{
FIXME
(
"%s %s %
s
%p %p - stub
\n
"
,
debugstr_w
(
lpSystemName
),
debugstr_w
(
lpName
),
FIXME
(
"%s %s %
p
%p %p - stub
\n
"
,
debugstr_w
(
lpSystemName
),
debugstr_w
(
lpName
),
debugstr_w
(
lpDisplayName
)
,
cchDisplayName
,
lpLanguageId
);
lpDisplayName
,
cchDisplayName
,
lpLanguageId
);
return
FALSE
;
return
FALSE
;
}
}
...
...
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