Share via


2.2.16.1 CAUB

The CAUB structure defines a counted array of unsigned characters.

 typedef struct tagCAUB {
   unsigned long cElems;
   [size_is(cElems)] unsigned char* pElems;
 } CAUB;

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

pElems: An array of unsigned characters.