Module: wine Branch: master Commit: 03c2bf093b2f96b8bf79d9dd0a600b9efa8fa1fe URL: http://source.winehq.org/git/wine.git/?a=commit;h=03c2bf093b2f96b8bf79d9dd0a...
Author: Austin English austinenglish@gmail.com Date: Thu Feb 16 21:17:30 2017 +0100
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
---
dlls/advapi32/advapi32.spec | 4 ++-- dlls/advapi32/security.c | 24 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 2 deletions(-)
diff --git a/dlls/advapi32/advapi32.spec b/dlls/advapi32/advapi32.spec index 6c57c88..88d8634 100644 --- a/dlls/advapi32/advapi32.spec +++ b/dlls/advapi32/advapi32.spec @@ -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 diff --git a/dlls/advapi32/security.c b/dlls/advapi32/security.c index ac61005..e36792c 100644 --- a/dlls/advapi32/security.c +++ b/dlls/advapi32/security.c @@ -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; +}