STATPROPSETSTG
Contains
information about a property set. To get this information, call IPropertyStorage::Stat, which fills in a buffer
containing the information describing the current property set. To enumerate
the STATPROPSETSTG structures for the property sets in the current property set
storage, call IPropertySetStorage::Enum to get a pointer to an enumerator. You can then
call the enumeration methods of the IEnumSTATPROPSETSTG interface on the
enumerator. The structure is defined as follows:
typedef struct tagSTATPROPSETSTG {
FMTID fmtid;
CLSID clsid;
DWORD grfFlags;
FILETIME mtime;
FILETIME ctime;
FILETIME atime;
} STATPROPSETSTG
Members
fmtid
Format
identifier of the current property set.
clsid
The CLSID
associated with this property set.
grfFlags
Flag values
of the property set, as specified in IPropertySetStorage::Create.
mtime
Time in
Universal Coordinated Time (UTC) that the property set was last modified.
ctime
Time in UTC
at which this property set was created.
atime
Time in UCT
at which this property set was last accessed.
See Also