2.3.6.1 StringsArray_r

The StringsArray_r structure is used to aggregate a number of character type strings into a single data structure.

 typedef struct _StringsArray {
   [range(0,100000)] DWORD Count;
   [size_is(Count)] [string] char* Strings[];
 } StringsArray_r;

Count: The number of character string structures in this aggregation. The value MUST NOT exceed 100,000.

Strings: The list of character type strings in this aggregation. The strings in this list are NULL-terminated.