Condividi tramite


IDebugBreakpointResolution2:: GetBreakpointType

Ottiene il tipo del punto di interruzione rappresentato dalla risoluzione.

HRESULT GetBreakpointType( 
   BP_TYPE* pBPType
);
int GetBreakpointType( 
   out enum_ BP_TYPE pBPType
);

Parametri

  • pBPType
    [out] Restituisce un valore BP_TYPE dell'enumerazione che specifica il tipo di questo punto di interruzione.

Valore restituito

Se l'operazione riesce, restituisce S_OK; in caso contrario restituisce un codice di errore. Restituisce E_FAIL se il campo di bpResLocation nella struttura associata BP_RESOLUTION_INFORMATION non è valido.

Note

Il punto di interruzione può essere un codice o un punto di interruzione dei dati, ad esempio.

Esempio

Nell'esempio seguente viene illustrato come implementare questo metodo per un oggetto semplice di CDebugBreakpointResolution che espone IDebugBreakpointResolution2 l'interfaccia.

HRESULT CDebugBreakpointResolution::GetBreakpointType(BP_TYPE* pBPType)  
{  
   HRESULT hr;  
  
   if (pBPType)  
   {  
      // Set default BP_TYPE.  
      *pBPType = BPT_NONE;  
  
      // Check if the BPRESI_BPRESLOCATION flag is set in BPRESI_FIELDS.  
      if (IsFlagSet(m_bpResolutionInfo.dwFields, BPRESI_BPRESLOCATION))  
      {  
         // Set the new BP_TYPE.  
         *pBPType = m_bpResolutionInfo.bpResLocation.bpType;  
         hr = S_OK;  
      }  
      else  
      {  
         hr = E_FAIL;  
      }  
   }  
   else  
   {  
      hr = E_INVALIDARG;  
   }  
  
   return hr;  
}  

Vedere anche

Riferimenti

IDebugBreakpointResolution2

BP_TYPE

BPRESI_FIELDS

BP_RESOLUTION_LOCATION

BP_RESOLUTION_INFORMATION