struct EXCEPTION_RECORD

typedef struct _EXCEPTION_RECORD
{
     LONG ExceptionCode;
     ULONG ExceptionFlags;
     PEXCEPTION_RECORD ExceptionRecord;
     PVOID ExceptionAddress;
     ULONG NumberParameters;
     ULONG ExceptionInformation[15];
} EXCEPTION_RECORD, *PEXCEPTION_RECORD;

Windows Vista Kernel Structures