Directory Services

DOMAINTREE

The DOMAINTREE structure contains data about a node in a domain tree obtained with the IDsBrowseDomainTree::GetDomains method. Each of the domains in the tree node are represented by a DOMAINDESC structure.

typedef struct {
DWORD dsSize;
DWORD dwCount;
DOMAINDESC aDomains[1]; } DOMAINTREE,
DOMAIN_TREE,
*PDOMAIN_TREE,
*LPDOMAINTREE;

Members

dsSize
Contains the size, in bytes, of the DOMAINTREE structure and all DOMAINDESC structures in this DOMAINTREE structure.
dwCount
Contains the number of DOMAINDESC structures in the aDomains array.
aDomains
Contains an array of DOMAINDESC structures that represent the domains. The array does not contain any child or sibling relational data. The relational data is contained within the DOMAINDESC structures.

Remarks

For more information about how to access and use the data in this structure, see Domain Browser.

Requirements

Client: Included in Windows XP and Windows 2000 Professional.
Server: Included in Windows Server 2003 and Windows 2000 Server.
Header: Declared in Dsclient.h.

See Also

DOMAINDESC, IDsBrowseDomainTree::GetDomains, IDsBrowseDomainTree::FreeDomains, Domain Browser