Поделиться через


IDebugPendingBreakpoint2::Delete

Ожидается удаление эта точка останова и все точки останова привязанные из нее.

HRESULT Delete( 
   void 
);
int Delete();

Возвращаемое значение

В случае успеха возвращает S_OK; в противном случае возвращает код ошибки. Возвращает E_BP_DELETED если точка останова удалена.

Пример

В следующем примере показано, как реализовать этот метод для простого CPendingBreakpoint объект, реализующий IDebugPendingBreakpoint2 интерфейс.

HRESULT CPendingBreakpoint::Delete(void)  
{  
   HRESULT hr;  
  
   // Verify that the pending breakpoint has not been deleted. If deleted,  
   // then return hr = E_BP_DELETED.  
   if (m_state.state != PBPS_DELETED)  
   {  
      // If the pending breakpoint has bound and has an associated bound 
      // breakpoint, delete and release the bound breakpoint and set the 
      // pointer to NULL.  
      if (m_pBoundBP)  
      {  
         m_pBoundBP->Delete();  
         m_pBoundBP->Release();  
         m_pBoundBP = NULL;  
      }  
      // If the pending breakpoint did not bind and has an associated 
      // error breakpoint, release the error breakpoint and set the 
      // pointer to NULL. 
      if (m_pErrorBP)  
      {  
         m_pErrorBP->Release();  
         m_pErrorBP = NULL;  
      }  
  
      // Set the PENDING_BP_STATE in the PENDING_BP_STATE_INFO structure 
      // to deleted.   
      m_state.state = PBPS_DELETED;  
   }  
   else  
   {  
      hr = E_BP_DELETED;  
   }  
  
   return hr;  
}  

См. также

Ссылки

IDebugPendingBreakpoint2