IDiaEnumDebugStreams::Item
Recupera un flusso di debug tramite un indice o un nome.
Sintassi
HRESULT Item (
VARIANT index,
IDiaEnumDebugStreamData** stream
);
Parametri
index
[in] Indice o nome del flusso di debug da recuperare. Se viene usata una variante integer, deve essere compreso nell'intervallo da 0 a count
-1, dove count
viene restituito dal metodo IDiaEnumDebug Flussi::get_Count.
stream
[out] Restituisce un oggetto IDiaEnumDebugStreamData che rappresenta il flusso di debug specificato.
Valore restituito
Se ha esito positivo, restituisce S_OK
; in caso contrario, restituisce un codice di errore.
Esempio
IDiaEnumDebugStreamData *GetStreamData(IDiaEnumDebugStreams *pStreamList,
LONG whichStream)
{
IDiaEnumDebugStreamData *pStreamData = NULL;
if (pStreamList != NULL)
{
LONG numStreams = 0;
if (pStreamList->get_count(&numStreams) == S_OK &&
whichStream >= 0 && whichStream < numStreams)
{
VARIANT vIndex;
vIndex.vt = VT_I4;
vIndex.lVal = whichStream;
if (pStreamList->Item(vIndex,&pStreamData) != S_OK)
{
std::cerr << "Error retrieving stream " << whichStream << std::endl;
}
}
}
return(pStreamData);
}