28 Dec
2018
28 Dec
'18
5:08 p.m.
On 12/28/18 6:42 PM, Jactry Zeng wrote:
+struct mfattribute +{ + struct list entry; + GUID key; + PROPVARIANT value; +}; + typedef struct _mfattributes { IMFAttributes IMFAttributes_iface; LONG ref; + CRITICAL_SECTION lock; + struct list attributes; } mfattributes;
Also GetItemByIndex() suggests array would be more appropriate.