How do i get the EXCEPTION_POINTERS, i.e. both: * PEXCEPTION_RECORD and * PCONTEXT data during an EExternal exception? BACKGROUND When Windows throws an exception, it passes a PEXCEPTION_POINTERS; a pointer to the exception information: typedef struct _EXCEPTION_POINTERS { PEXCEPTION_RECORD ExceptionRecord; PCONTEXT ContextRecord; } EXCEPTION_POINTERS, *PEXCEPTION_POINTERS; When Delphi throws me an [...] read more