System.SysUtils.InitializePackage

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure InitializePackage(Module: HMODULE);
procedure InitializePackage(Module: HMODULE; AValidatePackage: TValidatePackageProc);

C++

extern DELPHI_PACKAGE void __fastcall InitializePackage(NativeUInt Module)/* overload */;

Properties

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

Description

Validates and initializes a given package.

InitializePackage checks for duplicate units in a package and calls the initialization blocks of the contained units.

Note: InitializePackage is called internally by the LoadPackage function.

See Also