BACKUP_NODE_TREE Structure

BACKUP_NODE_TREE Structure

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

The BACKUP_NODE_TREE structure represents a single node in a tree of servers. This structure is returned by the HrESEBackupRestoreGetNodes Function.

Syntax

typedef struct {
wchar *wszName;
unsigned long fFlags;
ESE_ICON_DESCRIPTION iconDescription;
struct BACKUP_NODE_TREE *pNextNode;
struct BACKUP_NODE_TREE *pChildNode;

} BACKUP_NODE_TREE;

Members

  • wszName
    Display name of the node.
  • fFlags
    The type of the node. Can contain the following bit-mapped flags: BACKUP_NODE_TYPE_MACHINE (0x00000001), BACKUP_NODE_TYPE_ANNOTATION (0x00000010), and BACKUP_NODE_TYPE_DISPLAY (0x00000100).
  • iconDescription
    ESE_ICON_DESCRIPTION Structure containing the icon bitmap image that can be used by the backup client to represent the node.
  • pNextNode
    Pointer to the next node on the same level of the tree. If there are no more nodes at this level of the tree, pNextNode will be NULL.
  • pChildNode
    Pointer to the first node in the next level of the tree. If there are no child nodes, pChildNode will be NULL.

Structure Information

Minimum availability Exchange 2000 Server
Minimum operating systems Windows 2000

Send us your feedback about the Microsoft Exchange Server 2003 SDK.

Build: June 2007 (2007.618.1)

© 2003-2006 Microsoft Corporation. All rights reserved. Terms of use.