<div class="content"><p> </p><p>The UInt32Array structure is defined as follows.</p><dl>
<dd>
<div><pre> typedef struct _UInt32Array {
   [range(0, MAX_RPC_UINT32_ARRAY_COUNT)] 
     DWORD count;
   [size_is(count)] DWORD* ptr;
 } UInt32Array;
</pre></div>
</dd></dl><p><b>count:</b>  An unsigned 32-bit integer
that contains the number of unsigned 32-bit integers pointed to by ptr.</p><p><b>ptr:</b>  A pointer to an array of
unsigned 32-bit integers.</p></div>