System.TAssertErrorProc

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TAssertErrorProc = procedure (const Message, Filename: string;
LineNumber: Integer; ErrorAddr: Pointer);

C++

typedef void __fastcall (*TAssertErrorProc)(const UnicodeString Message, const UnicodeString Filename, int LineNumber, void * ErrorAddr);

Properties

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

Description

Specifies a routine called upon an assertion failure.

TAssertErrorProc represents a procedural type used to specify a routine that is called upon an assertion failure.

See Also