windows-nt/Source/XPSP1/NT/admin/hmonitor/snapin/systemeventcontainer.inl

18 lines
365 B
Plaintext
Raw Normal View History

2020-09-26 03:20:57 -05:00
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Operations
//////////////////////////////////////////////////////////////////////
inline void CSystemEventContainer::DeleteEvent(int iIndex)
{
CEvent* pEvent = m_Events[iIndex];
if( pEvent )
{
delete pEvent;
}
m_Events.RemoveAt(iIndex);
}