The ShortArray_r structure encodes an array of 16-bit integers.
typedef struct ShortArray_r {
[range(0,100000)] DWORD cValues;
[size_is(cValues)] short int* lpi;
} ShortArray_r;
cValues: The number of 16-bit integer values represented in the ShortArray_r structure. This value MUST NOT exceed 100,000.
lpi: The 16-bit integer values.