System.TRaiseExceptionProc

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TRaiseExceptionProc = procedure (ExceptionCode, ExceptionFlags: UInt32;
NumberOfArguments: UInt32; Args: Pointer); stdcall;

C++

typedef void __stdcall (*TRaiseExceptionProc)(UInt32 ExceptionCode, UInt32 ExceptionFlags, UInt32 NumberOfArguments, void * Args);

Properties

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

Description

Type of pointer to procedure.

You can use TRaiseExceptionProc as a type for variables that are assigned to RaiseExceptionProc. RaiseExceptionProc raises an exception with the specified information (code, flags, etc).

See Also