Scroll to navigation

GetShellSecurityDescriptor(3w) Wine API GetShellSecurityDescriptor(3w)

NAME

GetShellSecurityDescriptor (SHLWAPI.475)

SYNOPSIS

PSECURITY_DESCRIPTOR GetShellSecurityDescriptor
(
PSHELL_USER_PERMISSION* apUserPerm,
int cUserPerm
)
 

DESCRIPTION

prepares SECURITY_DESCRIPTOR from a set of ACEs.
 

PARAMS

apUserPerm [In] array of pointers to SHELL_USER_PERMISSION structures, each of which describes permissions to apply.
cUserPerm [In] number of entries in apUserPerm array.
 

RETURNS

success: pointer to SECURITY_DESCRIPTOR
failure: NULL.
 

NOTES

Call should free returned descriptor with LocalFree
 

IMPLEMENTATION

Exported by ordinal only. Use GetProcAddress(3w) to obtain a pointer to the function.
Implemented in "dlls/shlwapi/ordinal.c".
Debug channel "shell".
Oct 2012 Wine API