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 "include/ntsecapi.h". gitlab.winehq.org/wine/wine/blob/master/include/ntsecapi.h

Implemented in "dlls/advapi32/lsa.c". gitlab.winehq.org/wine/wine/blob/master/dlls/advapi32/lsa.c

Debug channel "advapi".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.