2.2.1.2.11 RPC_BIDI_RESPONSE_CONTAINER

The RPC_BIDI_RESPONSE_CONTAINER structure is a container for a list of bidirectional responses.<7>

 typedef struct _RPC_BIDI_RESPONSE_CONTAINER {
   DWORD Version;
   DWORD Flags;
   DWORD Count;
   [size_is(Count), unique] RPC_BIDI_RESPONSE_DATA aData[];
 } RPC_BIDI_RESPONSE_CONTAINER;

Version: This member MUST contain the value that specifies the version of the bidirectional API schema. The value of this member MUST be 0x00000001.

Flags: This member is a set of flags that are reserved for system use. The value of this member MUST be set to zero when sent and MUST be ignored on receipt.

Count: This member specifies the number of bidirectional responses in the aData member.

aData: This member is an array of RPC_BIDI_RESPONSE_DATA structures. Each structure in this member MUST contain a single bidirectional response. For more information, see section 2.2.1.12.2.