<div class="content" name="WStringsArray_r" uuid="ce40078b-cdb2-4e5c-9b57-4fa923f05b52"><p>The WStringsArray_r structure is used to aggregate a number
of <a href="../ms-dtyp/9e7d8bfc-016c-48b7-95ae-666e103eead4" data-linktype="relative-path">wchar_t</a>
type strings into a single data structure.</p><dl>
<dd>
<div><pre> typedef struct _WStringsArray {
   [range(0,100000)] DWORD Count;
   [size_is(Count)] [string] wchar_t* Strings[];
 } WStringsArray_r;
</pre></div>
</dd></dl><p><b>Count:</b>  The number of character
strings structures in this aggregation. The value MUST NOT exceed 100,000.</p><p><b>Strings:</b>  The list of wchar_t type
strings in this aggregation. The strings in this list are NULL-terminated.</p></div>