System.PackageInfoTable

De RAD Studio API Documentation
Aller à : navigation, rechercher

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;
};

Propriétés

Type Visibilité  Source Unité  Parent
record
struct
public
System.pas
System.hpp
System System

Description

Une variable de type PackageInfoTable fournit des informations sur l'initialisation ou la finalisation d'une série d'unités de package.

Une variable de type PackageInfoTable fournit des informations sur l'initialisation ou la finalisation d'une série d'unités de package.

PackageInfoTable est un enregistrement contenant un pointeur sur un tableau de type UnitEntryTable, comme le champ UnitInfo, et aussi le nombre d'entrées de ce tableau, comme le champ UnitCount.

La valeur de UnitCount doit toujours être supérieure ou égale à 1.

Voir aussi