2.3.1.5 LongArray_r

The LongArray_r structure encodes an array of 32-bit integers.

 typedef struct _LongArray_r {
   [range(0,100000)] DWORD cValues;
   [size_is(cValues)] long* lpl;
 } LongArray_r;

cValues: The number of 32-bit integers represented in this structure. This value MUST NOT exceed 100,000.

lpl: The 32-bit integer values.