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
2b323dba
Commit
2b323dba
authored
Dec 20, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Jan 18, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add TreeSetNamedSecurityInfoW stub.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=56055
parent
2586ddc5
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
security.c
dlls/advapi32/security.c
+13
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
2b323dba
...
...
@@ -824,7 +824,7 @@
# @ stub TreeResetNamedSecurityInfoA
@ stdcall TreeResetNamedSecurityInfoW(wstr long long ptr ptr ptr ptr long ptr long ptr)
# @ stub TreeSetNamedSecurityInfoA
# @ stub TreeSetNamedSecurityInfoW
@ stdcall TreeSetNamedSecurityInfoW(wstr long long ptr ptr ptr ptr long ptr long ptr)
# @ stub TrusteeAccessToObjectA
# @ stub TrusteeAccessToObjectW
# @ stub UninstallApplication
...
...
dlls/advapi32/security.c
View file @
2b323dba
...
...
@@ -3102,6 +3102,19 @@ BOOL WINAPI SaferCloseLevel(SAFER_LEVEL_HANDLE handle)
}
/******************************************************************************
* TreeSetNamedSecurityInfoW [ADVAPI32.@]
*/
DWORD
WINAPI
TreeSetNamedSecurityInfoW
(
WCHAR
*
name
,
SE_OBJECT_TYPE
type
,
SECURITY_INFORMATION
info
,
SID
*
owner
,
SID
*
group
,
ACL
*
dacl
,
ACL
*
sacl
,
DWORD
action
,
FN_PROGRESS
progress
,
PROG_INVOKE_SETTING
pis
,
void
*
args
)
{
FIXME
(
"(%s, %d, %lu, %p, %p, %p, %p, %lu, %p, %d, %p) stub
\n
"
,
debugstr_w
(
name
),
type
,
info
,
owner
,
group
,
dacl
,
sacl
,
action
,
progress
,
pis
,
args
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/******************************************************************************
* TreeResetNamedSecurityInfoW [ADVAPI32.@]
*/
DWORD
WINAPI
TreeResetNamedSecurityInfoW
(
LPWSTR
pObjectName
,
...
...
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