System.TRaiseExceptionProc

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

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

C++

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

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
type
typedef
public
System.pas
System.hpp
System System

Beschreibung

Typ des Zeigers auf eine Prozedur.

Sie können TRaiseExceptionProc als Typ für Variablen verwenden, die RaiseExceptionProc zugeordnet sind. RaiseExceptionProc löst eine Exception mit den angegebenen Informationen (Code, Flags etc.) aus.

Siehe auch