2.2.7.4 SAMPR_ULONG_ARRAY

The SAMPR_ULONG_ARRAY structure holds a counted array of unsigned long values.

 typedef struct _SAMPR_ULONG_ARRAY {
   unsigned long Count;
   [size_is(Count)] unsigned long* Element;
 } SAMPR_ULONG_ARRAY,
  *PSAMPR_ULONG_ARRAY;

Count: The number of elements in Element. If zero, Element MUST be ignored. If nonzero, Element MUST point to at least Count * sizeof(unsigned long) bytes of memory.

Element: A pointer to an array of unsigned integers with Count elements. The semantic meaning is dependent on the method in which the structure is being used.