CLUSPROP_DWORD structure

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

  • A CLUSPROP_VALUE structure describing the format, type, and length of the numeric data.
  • A DWORD value.

For convenience, the CLUSPROP_VALUE members are listed explicitly:

Syntax

typedef struct _CLUSPROP_DWORD {
  CLUSPROP_SYNTAX Syntax;
  DWORD           cbLength;
  DWORD           dw;
} CLUSPROP_DWORD, *PCLUSPROP_DWORD;

Members

  • Syntax
    Member of the CLUSPROP_VALUE structure with a value of CLUSPROP_SYNTAX_LIST_VALUE_DWORD (0x00010002).

  • cbLength
    Member of the CLUSPROP_VALUE structure indicating the count of bytes in the dw member.

  • dw
    Numeric value.

Requirements

Minimum supported client

None supported

Minimum supported server

Windows Server 2008 Enterprise, Windows Server 2008 Datacenter

Header

ClusAPI.h

See also

Data structures

CLUSPROP_SYNTAX

CLUSPROP_VALUE