typedef struct _EXCEPTION_RECORD 
{
  DWORD ExceptionCode;
  DWORD ExceptionFlags;
  struct _EXCEPTION_RECORD* ExceptionRecord;
  PVOID ExceptionAddress;
  DWORD NumberParameters;
  ULONG_PTR ExceptionInformation[15];// EXCEPTION_MAXIMUM_PARAMETERS = 15
} EXCEPTION_RECORD, *PEXCEPTION_RECORD;