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
@ -415,8 +415,8 @@
|
|||||||
@ stdcall LookupPrivilegeNameW(wstr ptr ptr ptr)
|
@ stdcall LookupPrivilegeNameW(wstr ptr ptr ptr)
|
||||||
@ stdcall LookupPrivilegeValueA(ptr ptr ptr)
|
@ stdcall LookupPrivilegeValueA(ptr ptr ptr)
|
||||||
@ stdcall LookupPrivilegeValueW(ptr ptr ptr)
|
@ stdcall LookupPrivilegeValueW(ptr ptr ptr)
|
||||||
# @ stub LookupSecurityDescriptorPartsA
|
@ stdcall LookupSecurityDescriptorPartsA(ptr ptr ptr ptr ptr ptr ptr)
|
||||||
# @ stub LookupSecurityDescriptorPartsW
|
@ stdcall LookupSecurityDescriptorPartsW(ptr ptr ptr ptr ptr ptr ptr)
|
||||||
@ stdcall LsaAddAccountRights(ptr ptr ptr long)
|
@ stdcall LsaAddAccountRights(ptr ptr ptr long)
|
||||||
@ stub LsaAddPrivilegesToAccount
|
@ stub LsaAddPrivilegesToAccount
|
||||||
# @ stub LsaClearAuditLog
|
# @ 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);
|
FIXME("(%p %u %p %u) stub\n", handle, infotype, buffer, size);
|
||||||
return FALSE;
|
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…
x
Reference in New Issue
Block a user