RAD Studio VCL Reference
|
A variable of type PackageInfoTable provides information on initializing or finalizing a series of package units.
PackageInfoTable = packed record UnitCount: Integer; UnitInfo: PUnitEntryTable; end;
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!
|