System.PackageUnitEntry
Delphi
PackageUnitEntry = packed record
Init, FInit : Pointer;
end;
C++
struct DECLSPEC_DRECORD PackageUnitEntry
{
public:
void *Init;
void *FInit;
};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
record struct |
public | System.pas System.hpp |
System | System |
Description
A variable of type PackageUnitEntry provides information about initializing or finalizing a package unit.
PackageUnitEntry is a record containing the pointer fields Init and FInit. These fields provide information about initializing or finalizing a package unit.