CLUSTER_READ_BATCH_COMMAND structure (clusapi.h)

Represents a result for a single command in a read batch.

Syntax

typedef struct _CLUSTER_READ_BATCH_COMMAND {
  CLUSTER_REG_COMMAND Command;
  DWORD               dwOptions;
  LPCWSTR             wzSubkeyName;
  LPCWSTR             wzValueName;
  BYTE const          *lpData;
  DWORD               cbData;
} CLUSTER_READ_BATCH_COMMAND;

Members

Command

The command result status, which can be one of these values.

CLUSREG_READ_VALUE (8)

The result structure has content for the requested value. The dwOptions member is set to the registry value type.

CLUSREG_READ_ERROR (9)

The value was missing, or another error occurred during read. The dwOptions member contains the actual error type.

dwOptions

The registry value type or the read error type, depending on the Command result.

wzSubkeyName

The name of the key requested in the read command.

wzValueName

The name of the value requested in the read command.

lpData

A pointer to value data.

cbData

The count, in bytes, of the lpData value data.

Remarks

The pointers in the CLUSTER_READ_BATCH_COMMAND structure are valid until the read batch result handle is closed by the ClusterRegCloseReadBatchReply function.

Errors from read commands are independent from each other.

Requirements

Requirement Value
Minimum supported client None supported
Minimum supported server Windows ServerĀ 2012
Header clusapi.h

See also

ClusterRegCloseReadBatchReply

ClusterRegReadBatchReplyNextCommand