STATPROPSTG
Each
STATPROPSTG structure contains information about a single property in a
property set. This information is the property identifier and type tag, and the
optional string name that may be associated with the property.
IPropertyStorage::Enum supplies a pointer to the IEnumSTATPROPSTG
typedef struct
tagSTATPROPSTG {
LPWSTR lpwstrName;
PROPID propid;
VARTYPE vt;
} STATPROPSTG
Members
lpwstrName
Wide-character
string containing the optional string name that can be associated with the
property. May be NULL. This member must be freed using CoTaskMemFree
propid
A 32-bit
identifier that uniquely identifies the property within the property set. All
properties within property sets must have unique property identifiers.
vt
Type of the
property.
See Also