The StringArray_r structure encodes an array of references to 8-bit character strings.
typedef struct _StringArray_r {
[range(0,100000)] DWORD cValues;
[size_is(cValues)] [string] char** lppszA;
} StringArray_r;
cValues: The number of 8-bit character strings references represented in the StringArray_r structure. This value MUST NOT exceed 100,000.
lppszA: The 8-bit character string references. The strings referred to are NULL-terminated.