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


IDiaEnumInputAssemblyFiles

Перечислите входные файлы сборок, перечисленные в источнике данных.

Синтаксис

IDiaEnumInputAssemblyFiles : IUnknown

Методы в порядке таблицы Vtable

В следующей таблице показаны методы IDiaEnumInputAssemblyFiles.

Метод Description
IDiaEnumInputAssemblyFiles::get__NewEnum Извлекает версию интерфейса IEnumVARIANT этого перечислителя.
IDiaEnumInputAssemblyFiles::get_Count Извлекает количество входных файлов сборок.
IDiaEnumInputAssemblyFiles::Item Извлекает входной файл сборки с помощью индекса.
IDiaEnumInputAssemblyFiles::Next Извлекает указанное количество входных файлов сборок в последовательности перечисления.
IDiaEnumInputAssemblyFiles::Skip Пропускает указанное количество входных файлов сборок в последовательности перечисления.
IDiaEnumInputAssemblyFiles::Reset Сбрасывает последовательность перечисления в начало.
IDiaEnumInputAssemblyFiles::Clone Создает перечислитель, содержащий то же состояние перечисления, что и текущий перечислитель.

Замечания

Заметки для вызывающих абонентов

Этот интерфейс получается путем вызова метода IDiaSession::findInputAssemblyFiles с именем определенного исходного файла или путем вызова метода IDiaSession::getEnumTables с глобальным уникальным идентификатором (GUID) IDiaEnumInputAssemblyFiles интерфейса.

Пример

В этом примере показано, как получить ( GetEnumInputAssemblyFiles функцию) и использовать ( DumpAllInputAssemblyFiles функцию) IDiaEnumInputAssemblyFiles интерфейса. IDiaPropertyStorage См. интерфейс реализации PrintPropertyStorage функции. Альтернативные выходные данные см. в интерфейсе IDiaInputAssemblyFile .


IDiaEnumInputAssemblyFiles* GetEnumInputAssemblyInputFiles(IDiaSession *pSession)
{
    IDiaEnumInputAssemblyFiles* pUnknown    = NULL;
    REFIID                   iid         = __uuidof(IDiaEnumInputAssemblyFiles);
    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 DumpAllInputAssemblyFiles( IDiaSession* pSession)
{
    IDiaEnumInputAssemblyFiles* pEnumInpAsmFiles;

    pEnumInpAsmFiles = GetEnumInputAssemblyInputFiles(pSession);
    if (pEnumInpAsmFiles != NULL)
    {
        IDiaInputAssemblyFile* pInpAsmFile;
        ULONG celt = 0;

        while(pEnumInpAsmFiles->Next(1, &pInpAsmFile, &celt) == S_OK &&
              celt == 1)
        {
            IDiaPropertyStorage *pPropertyStorage;
            if (pInpAsmFile->QueryInterface(__uuidof(IDiaPropertyStorage),
                                          (void **)&pPropertyStorage) == S_OK)
            {
                PrintPropertyStorage(pPropertyStorage);
                pPropertyStorage->Release();
            }
            pInpAsmFile->Release();
        }
        pEnumInpAsmFiles->Release();
    }
}

Требования

Заголовок: Dia2.h

Библиотека: diaguids.lib

DLL: msdia140.dll

См. также