IDiaEnumInjectedSources
Wyliczanie różnych źródeł wniesiony zawarte w źródle danych.
IDiaEnumInjectedSources : IUnknown
Metody w kolejności Vtable
W poniższej tabeli przedstawiono metody IDiaEnumInjectedSources.
Metoda |
Opis |
---|---|
Pobiera IEnumVARIANT Interface wersji ten moduł wyliczający. |
|
Pobiera numer wniesiony źródeł. |
|
Pobiera źródła wniesiony z indeksu. |
|
Pobiera określoną liczbę źródeł wniesiony w sekwencji wyliczania. |
|
Pomija określoną liczbę źródeł wniesiony w sekwencji wyliczania. |
|
Resetuje sekwencji wyliczenie na początku. |
|
Tworzy moduł wyliczający zawierający tym samym stanie wyliczenie jako bieżący moduł wyliczający. |
Uwagi
Uwagi do wywoływania
Ten interfejs jest uzyskiwany przez wywołanie IDiaSession::findInjectedSource metodę o nazwie pliku określonego źródła lub poprzez wywołanie IDiaSession::getEnumTables metodę z identyfikatorem GUID IDiaEnumInjectedSources interfejsu.
Przykład
Ten przykład pokazuje sposób uzyskiwania ( GetEnumInjectedSources funkcja) i użyć ( DumpAllInjectedSources funkcja) IDiaEnumInjectedSources interfejsu.Zobacz IDiaPropertyStorage implementacja interfejsu PrintPropertyStorage funkcji.Alternatywne dane wyjściowe, zobacz IDiaInjectedSource interfejsu.
IDiaEnumInjectedSources* GetEnumInjectedSources(IDiaSession *pSession)
{
IDiaEnumInjectedSources* pUnknown = NULL;
REFIID iid = __uuidof(IDiaEnumInjectedSources);
IDiaEnumTables* pEnumTables = NULL;
IDiaTable* pTable = NULL;
ULONG celt = 0;
if (pSession->getEnumTables(&pEnumTables) != S_OK)
{
wprintf(L"ERROR - GetTable() getEnumTables\n");
return NULL;
}
while (pEnumTables->Next(1, &pTable, &celt) == S_OK && celt == 1)
{
// There is only one table that matches the given iid
HRESULT hr = pTable->QueryInterface(iid, (void**)&pUnknown);
pTable->Release();
if (hr == S_OK)
{
break;
}
}
pEnumTables->Release();
return pUnknown;
}
void DumpAllInjectedSources( IDiaSession* pSession)
{
IDiaEnumInjectedSources* pEnumInjSources;
pEnumInjSources = GetEnumInjectedSources(pSession);
if (pEnumInjSources != NULL)
{
IDiaInjectedSource* pInjSource;
ULONG celt = 0;
while(pEnumInjSources->Next(1, &pInjSource, &celt) == S_OK &&
celt == 1)
{
IDiaPropertyStorage *pPropertyStorage;
if (pInjSource->QueryInterface(__uuidof(IDiaPropertyStorage),
(void **)&pPropertyStorage) == S_OK)
{
PrintPropertyStorage(pPropertyStorage);
pPropertyStorage->Release();
}
pInjSource->Release();
}
pEnumInjSources->Release();
}
}
Wymagania
Nagłówek: Dia2.h
Biblioteki: diaguids.lib
Biblioteka DLL: msdia80.dll
Zobacz też
Informacje
IDiaSession::findInjectedSource