CLUSTER_ENUM_ITEM structure (clusapi.h)

Contains the properties of a cluster object. This structure is used to enumerate clusters in the ClusterEnumEx and ClusterNodeEnumEx functions.

Syntax

typedef struct _CLUSTER_ENUM_ITEM {
  DWORD  dwVersion;
  DWORD  dwType;
  DWORD  cbId;
  LPWSTR lpszId;
  DWORD  cbName;
  LPWSTR lpszName;
} CLUSTER_ENUM_ITEM, *PCLUSTER_ENUM_ITEM;

Members

dwVersion

The version of the CLUSTER_ENUM_ITEM structure.

dwType

A bitmask that specifies the type of the cluster object.

cbId

The size, in bytes, of the lpszId field.

lpszId

The ID of the cluster.

cbName

The size, in bytes, of the lpszName field.

lpszName

The name of the cluster.

Requirements

Requirement Value
Minimum supported client None supported
Minimum supported server Windows Server 2008 R2
Header clusapi.h

See also

ClusterEnumEx

ClusterNodeEnumEx

Data Structures