IDiaEnumDebugStreams::Item
擷取索引或名稱的偵錯資料的流。
HRESULT Item (
VARIANT index,
IDiaEnumDebugStreamData** stream
);
參數
Index - 索引
[in]索引或名稱的偵錯資料流擷取。 如果使用整數變數,則它必須是介於 0 到count-1,其中count時傳回的IDiaEnumDebugStreams::get_Count方法。Stream - 資料流
[] out傳回IDiaEnumDebugStreamData物件,代表指定的偵錯資料流。
傳回值
如果成功的話,會傳回S_OK。 否則,會傳回錯誤碼。
範例
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);
}