System.TPackageTypeInfo
Delphi
  TPackageTypeInfo = record
    TypeCount: Integer;
    TypeTable: PTypeTable;
    UnitCount: Integer;
    UnitNames: _PShortStr; { concatenation of Pascal strings, one for each unit }
  end;
C++
struct DECLSPEC_DRECORD TPackageTypeInfo
{
public:
    int TypeCount;
    TTypeTable *TypeTable;
    int UnitCount;
    ShortString *UnitNames;
};
プロパティ
| 種類 | 可視性 | ソース | ユニット | 親 | 
|---|---|---|---|---|
| record struct | public | System.pas System.hpp | System | System | 
説明
内部的に使用するためのものです。
この型を使用しないでください。