次の方法で共有


IDiaEnumInputAssemblyFiles

データ ソースに一覧表示されている入力アセンブリ ファイルを列挙します。

構文

IDiaEnumInputAssemblyFiles : IUnknown

Vtable 順序のメソッド

次の表に、IDiaEnumInputAssemblyFiles のメソッドを示します。

メソッド 説明
IDiaEnumInputAssemblyFiles::get__NewEnum この列挙子の IEnumVARIANT インターフェイス バージョンを取得します。
IDiaEnumInputAssemblyFiles::get_Count 入力アセンブリ ファイルの数を取得します。
IDiaEnumInputAssemblyFiles::Item インデックスを使用して入力アセンブリ ファイルを取得します。
IDiaEnumInputAssemblyFiles::Next 列挙シーケンス内の指定した数の入力アセンブリ ファイルを取得します。
IDiaEnumInputAssemblyFiles::Skip 列挙シーケンス内の指定された数の入力アセンブリ ファイルをスキップします。
IDiaEnumInputAssemblyFiles::Reset 列挙シーケンスを先頭にリセットします。
IDiaEnumInputAssemblyFiles::Clone 現在の列挙子と同じ列挙状態を含む列挙子を作成します。

解説

呼び出し元に関する注意事項

このインターフェイスは、特定のソース ファイルの名前を使用して IDiaSession::findInputAssemblyFiles メソッドを呼び出すか、IDiaEnumInputAssemblyFiles インターフェイスのグローバル一意識別子 (GUID) を使用して IDiaSession::getEnumTables メソッドを呼び出すことによって取得されます。

この例では、IDiaEnumInputAssemblyFiles インターフェイスを取得する方法 (GetEnumInputAssemblyFiles 関数) と使用する方法 (DumpAllInputAssemblyFiles 関数) を示します。 PrintPropertyStorage関数の実装については、IDiaPropertyStorage インターフェイスを参照してください。 別の出力については、 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

関連項目