System.SysUtils.GetPackageInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetPackageInfo(Module: HMODULE; Param: Pointer; var Flags: Integer; InfoProc: TPackageInfoProc);

C++

extern DELPHI_PACKAGE void __fastcall GetPackageInfo(NativeUInt Module, void * Param, int &Flags, TPackageInfoProc InfoProc);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

Enumerates all the units and required packages for a package.

Call GetPackageInfo to process the information in a package's information table. The InfoProc callback is called for every unit included in the package and for every package required by the package. Module is the module handle for the package. GetPackageInfo passes any application-supplied information passed in the Param parameter to the InfoProc callback. The package's information flags are passed to the InfoProc and returned in the Flags parameter.

See Also