mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 07:37:02 +00:00
advapi32: Add LookupSecurityDescriptorPartsA/W stubs.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Sebastian Lackner <sebastian@fds-team.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
19666ef55b
commit
03c2bf093b
2 changed files with 26 additions and 2 deletions
|
@ -415,8 +415,8 @@
|
|||
@ stdcall LookupPrivilegeNameW(wstr ptr ptr ptr)
|
||||
@ stdcall LookupPrivilegeValueA(ptr ptr ptr)
|
||||
@ stdcall LookupPrivilegeValueW(ptr ptr ptr)
|
||||
# @ stub LookupSecurityDescriptorPartsA
|
||||
# @ stub LookupSecurityDescriptorPartsW
|
||||
@ stdcall LookupSecurityDescriptorPartsA(ptr ptr ptr ptr ptr ptr ptr)
|
||||
@ stdcall LookupSecurityDescriptorPartsW(ptr ptr ptr ptr ptr ptr ptr)
|
||||
@ stdcall LsaAddAccountRights(ptr ptr ptr long)
|
||||
@ stub LsaAddPrivilegesToAccount
|
||||
# @ stub LsaClearAuditLog
|
||||
|
|
|
@ -6093,3 +6093,27 @@ BOOL WINAPI SaferSetLevelInformation(SAFER_LEVEL_HANDLE handle, SAFER_OBJECT_INF
|
|||
FIXME("(%p %u %p %u) stub\n", handle, infotype, buffer, size);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* LookupSecurityDescriptorPartsA [ADVAPI32.@]
|
||||
*/
|
||||
DWORD WINAPI LookupSecurityDescriptorPartsA(TRUSTEEA *owner, TRUSTEEA *group, ULONG *access_count,
|
||||
EXPLICIT_ACCESSA *access_list, ULONG *audit_count,
|
||||
EXPLICIT_ACCESSA *audit_list, SECURITY_DESCRIPTOR *descriptor)
|
||||
{
|
||||
FIXME("(%p %p %p %p %p %p %p) stub\n", owner, group, access_count,
|
||||
access_list, audit_count, audit_list, descriptor);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* LookupSecurityDescriptorPartsW [ADVAPI32.@]
|
||||
*/
|
||||
DWORD WINAPI LookupSecurityDescriptorPartsW(TRUSTEEW *owner, TRUSTEEW *group, ULONG *access_count,
|
||||
EXPLICIT_ACCESSW *access_list, ULONG *audit_count,
|
||||
EXPLICIT_ACCESSW *audit_list, SECURITY_DESCRIPTOR *descriptor)
|
||||
{
|
||||
FIXME("(%p %p %p %p %p %p %p) stub\n", owner, group, access_count,
|
||||
access_list, audit_count, audit_list, descriptor);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue