KVString

This structure defines a string value. This structure is defined in kvmetadata.h.

typedef struct tag_KVString
{
    KVStructHeader;

    char* pcString;

    unsigned int cbSize;
} KVString;

Member Descriptions

KVStructHeader

The KeyView version of the structure. See KVStructHead.

pcString A pointer to the string data. This is encoded in the target encoding provided to fpInit(), and may not be null terminated.

cbSize

The size of the string in bytes.