1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

advapi32: Add TreeSetNamedSecurityInfoW stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56055
This commit is contained in:
Alex Henrie 2023-12-20 23:13:08 -07:00 committed by Alexandre Julliard
parent 2586ddc5dc
commit 2b323dbad7
2 changed files with 14 additions and 1 deletions

View file

@ -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

View file

@ -3101,6 +3101,19 @@ BOOL WINAPI SaferCloseLevel(SAFER_LEVEL_HANDLE handle)
return TRUE;
}
/******************************************************************************
* 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.@]
*/