CLUSPROP_VALUE structure (clusapi.h)

Describes the syntax and length of a data value used in a value list. The CLUSPROP_VALUE structure is used as a generic header in all of the structures that describe data of a particular type, such as CLUSPROP_BINARY and CLUSPROP_SZ.

Syntax

typedef struct CLUSPROP_VALUE {
  CLUSPROP_SYNTAX Syntax;
  DWORD           cbLength;
} CLUSPROP_VALUE, *PCLUSPROP_VALUE;

Members

Syntax

CLUSPROP_SYNTAX union that describes a value.

cbLength

Count of bytes in the data that follows this CLUSPROP_VALUE structure.

Remarks

The CLUSPROP_VALUE structure is used to describe the format, type, and length of a data value in the following structures:

Requirements

Requirement Value
Minimum supported client None supported
Minimum supported server Windows Server 2008 Enterprise, Windows Server 2008 Datacenter
Header clusapi.h

See also

CLUSPROP_BINARY

CLUSPROP_SYNTAX

CLUSPROP_SZ

CLUSPROP_VALUE

Data structures