STATDATA
The STATDATA
structure is the data structure used to specify each advisory connection. It is
used for enumerating current advisory connections. It holds data returned by
the IEnumSTATDATA
typedef struct tagSTATDATA
{
FORMATETC formatetc;
DWORD grfAdvf;
IAdviseSink* pAdvSink;
DWORD dwConnection;
} STATDATA;
Members
formatetc
The FORMATETC
grfAdvf
The ADVF
pAdvSink
The pointer
for the IAdviseSink
dwConnection
The token
that uniquely identifies the advisory connection. This token is returned by the
method that sets up the advisory connection.
See Also