RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
System.PackageInfoTable Record

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

Pascal
PackageInfoTable = packed record
  UnitCount: Integer;
  UnitInfo: PUnitEntryTable;
end;
C++
struct PackageInfoTable {
  int UnitCount;
  PUnitEntryTable UnitInfo;
};

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

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

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

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!