Scroll to navigation

LsaLookupNames(3w) Wine API LsaLookupNames(3w)

NAME

LsaLookupNames (ADVAPI32.@)

SYNOPSIS

NTSTATUS LsaLookupNames
(
IN LSA_HANDLE PolicyHandle,
IN ULONG Count,
IN PLSA_UNICODE_STRING Names,
OUT PLSA_REFERENCED_DOMAIN_LIST* ReferencedDomains,
OUT PLSA_TRANSLATED_SID* Sids
)
 

DESCRIPTION

Returns the SIDs of an array of user, group, or local group names.
 

PARAMS

PolicyHandle [In] Handle to a Policy object.
Count [In] Number of names in Names.
Names [In] Array of names to lookup.
ReferencedDomains [Out] Array of domains where the names were found.
Sids [Out] Array of SIDs corresponding to Names.
 

RETURNS

Success: STATUS_SUCCESS, STATUS_SOME_NOT_MAPPED
Failure: STATUS_NONE_MAPPED or NTSTATUS code.
 

IMPLEMENTATION

Declared in "ntsecapi.h".
Implemented in "dlls/advapi32/lsa.c".
Debug channel "advapi".
Oct 2012 Wine API