You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
356 B
10 lines
356 B
// File: ichannel.h
|
|
|
|
#ifndef _ICHANNEL_H_
|
|
#define _ICHANNEL_H_
|
|
|
|
HRESULT OnNotifyChannelMemberAdded(IUnknown *pChannelNotify, PVOID pv, REFIID riid);
|
|
HRESULT OnNotifyChannelMemberUpdated(IUnknown *pChannelNotify, PVOID pv, REFIID riid);
|
|
HRESULT OnNotifyChannelMemberRemoved(IUnknown *pChannelNotify, PVOID pv, REFIID riid);
|
|
|
|
#endif // _CHANNEL_H_
|