2.2.75 FW_BYTE_BLOB

This structure contains a memory section. The format of the memory is defined by the context where it is used; for example, see the SubjectName field of the FW_CERT_INFO structure.

 typedef struct _tag_FW_BYTE_BLOB {
   [range(0,10000)] unsigned long dwSize;
   [size_is(dwSize)] unsigned char* Blob;
 } FW_BYTE_BLOB,
  *PFW_BYTE_BLOB;

dwSize: This field specifies the size in octets of the Blob field.

Blob: A pointer to an array of dwSize octets.