Scroll to navigation

LsaEnumerateTrustedDomains(3w) Wine API LsaEnumerateTrustedDomains(3w)

NAME

LsaEnumerateTrustedDomains (ADVAPI32.@)

SYNOPSIS

NTSTATUS LsaEnumerateTrustedDomains
(
IN LSA_HANDLE PolicyHandle,
IN PLSA_ENUMERATION_HANDLE EnumerationContext,
OUT PVOID* Buffer,
IN ULONG PreferredMaximumLength,
OUT PULONG CountReturned
)
 

DESCRIPTION

Returns the names and SIDs of trusted domains.
 

PARAMS

PolicyHandle [In] Handle to a Policy object.
EnumerationContext [In] Pointer to an enumeration handle.
Buffer [Out] Contains the names and SIDs of trusted domains.
PreferredMaximumLength [In] Preferred maximum size in bytes of Buffer.
CountReturned [Out] Number of elements in Buffer.
 

RETURNS

Success: STATUS_SUCCESS, STATUS_MORE_ENTRIES, STATUS_NO_MORE_ENTRIES
Failure: NTSTATUS code.
 

NOTES

LsaEnumerateTrustedDomains can be called multiple times to enumerate all trusted domains.
 

IMPLEMENTATION

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