CLUSPROP_BINARY structure (clusapi.h)

Describes a binary data value. It is used as an entry in a value list and consists of:

  • A CLUSPROP_VALUE structure with a value of CLUSPROP_SYNTAX_LIST_VALUE_BINARY (0x00010001).
  • A byte array containing the data.

Syntax

typedef struct CLUSPROP_BINARY : CLUSPROP_VALUE {
  BYTE rgb[];
} CLUSPROP_BINARY, *PCLUSPROP_BINARY;

Inheritance

The CLUSPROP_BINARY structure implements CLUSPROP_VALUE.

Members

rgb

Array of bytes containing the data.

Remarks

Use the CLUSPROP_BINARY_DECLARE macro to initialize a CLUSPROP_BINARY structure.

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_DECLARE

CLUSPROP_SYNTAX

CLUSPROP_VALUE

Data structures