advapi32: Add TreeSetNamedSecurityInfoW stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56055
This commit is contained in:
parent
2586ddc5dc
commit
2b323dbad7
2 changed files with 14 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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.@]
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue