2.2.16.3 CAL

The CAL structure defines a counted array of 32-bit unsigned integers.

 typedef struct tagCAL {
   unsigned long cElems;
   [size_is(cElems )] long* pElems;
 } CAL;

cElems: MUST be set to the total number of elements of the array.

pElems: An array of 32-bit unsigned integers.