KVBinaryData

This structure defines a value containing binary data. This structure is defined in kvmetadata.h.

typedef struct tag_KVBinaryData
{
    KVStructHeader;

    unsigned char* pucData;

    unsigned int cbSize;
} KVBinaryData;

Member Descriptions

KVStructHeader

The KeyView version of the structure. See KVStructHead.

pucData

A pointer to the binary data.

cbSize

The size of the data in bytes.