System.TInterfaceTable

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

  TInterfaceTable = packed record
    EntryCount: Integer;
    {$IF defined(CPU64BITS)}
    _Filler: UInt32;
    {$ENDIF}
    Entries: array[0..9999{EntryCount - 1}] of TInterfaceEntry;
   {Intfs: array[0..EntryCount - 1] of PPTypeInfo;}
  end;

C++

struct DECLSPEC_DRECORD TInterfaceTable
{
public:
    int EntryCount;
#ifdef _WIN64
    unsigned _Filler;
#endif /* _WIN64 */
    System::StaticArray<TInterfaceEntry, 10000> Entries;
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
System.pas
System.hpp
System System

説明

TInterfaceTable は、クラスがサポートするインターフェイスのリストです。PInterfaceTable は、このリストを指します。

PInterfaceTableTInterfaceTable 型の値へのポインタです。TInterfaceTable には、次のフィールドがあります。



フィールド 意味

EntryCount

このデーブル内のインターフェイス記述子の数。

Entries

インターフェイス記述子の配列。



関連項目