System.PackageInfoTable

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  PackageInfoTable = record
    UnitCount: Integer;      { number of entries in UnitInfo array; always > 0 }
    UnitInfo: PUnitEntryTable;
    TypeInfo: TPackageTypeInfo;
  end;

C++

struct DECLSPEC_DRECORD PackageInfoTable
{
public:
    int UnitCount;
    UnitEntryTable *UnitInfo;
    TPackageTypeInfo TypeInfo;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.pas
System.hpp
System System

Description

A variable of type PackageInfoTable provides information about initializing or finalizing a series of package units.

A variable of type PackageInfoTable provides information about initializing or finalizing a series of package units.

PackageInfoTable is a record containing a pointer to an array of type UnitEntryTable, such as the field UnitInfo, and also the number of entries in this array, such as the field UnitCount.

The value of UnitCount must always be greater than or equal to 1.

See Also