The BinaryArray_r structure is an array of Binary_r data structures.
typedef struct _BinaryArray_r {
[range(0,100000)] DWORD cValues;
[size_is(cValues)] Binary_r* lpbin;
} BinaryArray_r;
cValues: The number of Binary_r data structures represented in the BinaryArray_r structure. This value MUST NOT exceed 100,000.
lpbin: The Binary_r data structures.