API:System.TExceptionRecord

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

TExceptionRecord = record

C++

struct DECLSPEC_DRECORD TExceptionRecord
{
public:
    unsigned ExceptionCode;
    unsigned ExceptionFlags;
    PExceptionRecord ExceptionRecord;
    void *ExceptionAddress;
    unsigned NumberParameters;
public:
    union
    {
        struct
        {
            void *ExceptAddr;
            void *ExceptObject;
        };
        struct
        {
#ifndef _WIN64
            System::StaticArray<unsigned, 15> ExceptionInformation;
#else /* _WIN64 */
            System::StaticArray<unsigned __int64, 15> ExceptionInformation;
#endif /* _WIN64 */
        };
    };
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
System.pas
System.hpp
System System

Beschreibung

Embarcadero Technologies verfügt zurzeit über keine zusätzlichen Informationen. Bitte unterstützen Sie uns bei der Dokumentation dieses Themas, indem Sie Ihre Kommentare auf der Diskussionsseite eingeben.