<div class="content" name="StringArray" uuid="0215b98f-6929-47a8-ad91-d8b99f93e38c"><p>The StringArray structure is defined as follows.</p><dl>
<dd>
<div><pre> typedef struct _StringArray {
   [range(0, MAX_RPC_STRING_ARRAY_COUNT)] 
     DWORD count;
   [size_is(count), string] LPWSTR* ptr;
 } StringArray;
</pre></div>
</dd></dl><p><b>count:</b>  A 32-bit unsigned integer
that contains the number of strings pointed to by ptr.</p><p><b>ptr:</b>  A pointer to an array of
null-terminated Unicode (as specified in <a href="https://go.microsoft.com/fwlink/?LinkId=90550" data-linktype="external">[UNICODE]</a>) strings.</p></div>