TRUSTED_DOMAIN_FULL_INFORMATION structure (ntsecapi.h)

The TRUSTED_DOMAIN_FULL_INFORMATION structure is used to retrieve complete information about a trusted domain. The LsaQueryTrustedDomainInfo function uses this structure when its InformationClass parameter is set to TrustedDomainFullInformation.

Syntax

typedef struct _TRUSTED_DOMAIN_FULL_INFORMATION {
  TRUSTED_DOMAIN_INFORMATION_EX   Information;
  TRUSTED_POSIX_OFFSET_INFO       PosixOffset;
  TRUSTED_DOMAIN_AUTH_INFORMATION AuthInformation;
} TRUSTED_DOMAIN_FULL_INFORMATION, *PTRUSTED_DOMAIN_FULL_INFORMATION;

Members

Information

A TRUSTED_DOMAIN_INFORMATION_EX structure containing extended information for a trusted domain.

PosixOffset

A TRUSTED_POSIX_OFFSET_INFO structure containing the value used to generate Posix user and group identifiers for a trusted domain.

AuthInformation

A TRUSTED_DOMAIN_AUTH_INFORMATION structure containing authentication information for a trusted domain.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header ntsecapi.h

See also

LsaQueryTrustedDomainInfo

TRUSTED_DOMAIN_AUTH_INFORMATION

TRUSTED_DOMAIN_INFORMATION_EX

TRUSTED_INFORMATION_CLASS

TRUSTED_POSIX_OFFSET_INFO