Source code of Windows XP (NT5)
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.

17 lines
365 B

  1. #ifdef _DEBUG
  2. #define new DEBUG_NEW
  3. #endif
  4. //////////////////////////////////////////////////////////////////////
  5. // Operations
  6. //////////////////////////////////////////////////////////////////////
  7. inline void CSystemEventContainer::DeleteEvent(int iIndex)
  8. {
  9. CEvent* pEvent = m_Events[iIndex];
  10. if( pEvent )
  11. {
  12. delete pEvent;
  13. }
  14. m_Events.RemoveAt(iIndex);
  15. }