EXCEPTION_RECORD 構造体

宣言文
Type EXCEPTION_RECORD
    ExceptionCode As Long
    ExceptionFlags As Long
    pExceptionRecord As Long	' Pointer to an EXCEPTION_RECORD structure
    ExceptionAddress As Long
    NumberParameters As Long
    ExceptionInformation(EXCEPTION_MAXIMUM_PARAMETERS) As Long
End Type
備考
Structure EXCEPTION_RECORD
    ExceptionCode As Integer
    ExceptionFlags As Integer
    pExceptionRecord As Integer	' Pointer to an EXCEPTION_RECORD structure
    ExceptionAddress As Integer
    NumberParameters As Integer
    ExceptionInformation(EXCEPTION_MAXIMUM_PARAMETERS) As Integer
End Structure