System.SysUtils.TValidatePackageProc

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TValidatePackageProc = function (Module: HMODULE): Boolean;

C++

typedef bool __fastcall (*TValidatePackageProc)(unsigned Module);

Properties

Type Visibility Source Unit Parent
type
typedef
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

TValidatePackageProc is a call-back function invoked by LoadPackage.

TValidatePackageProc is optionally invoked by LoadPackage when a package is loaded. The package is not loaded if TValidatePackageProc determines that it is not valid and hence returns False.

See Also