System.PackageInfoTable
Delphi
PackageInfoTable = record
C++
struct DECLSPEC_DRECORD PackageInfoTable
{
public:
int UnitCount;
PUnitEntryTable 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.