windows-nt/Source/XPSP1/NT/admin/activec/inc/treesink.h

15 lines
520 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*+-------------------------------------------------------------------------*
* class CTreeCtrlEventSink
*
*
* PURPOSE: The notification handler class for tree notifications.
*
*+-------------------------------------------------------------------------*/
class CTreeCtrlEventSink : public CEventSinkBase
{
virtual SC ScOnSelectNode() {return S_OK;}
virtual SC ScOnDeleteNode() {return S_OK;}
virtual SC ScOnInsertNode() {return S_OK;}
virtual SC ScOnModifyNode() {return S_OK;}
};