You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
346 B
14 lines
346 B
/** |
|
* @file fault.h |
|
* |
|
* Interface of exception logging functionality. |
|
*/ |
|
#ifndef __FAULT_H__ |
|
#define __FAULT_H__ |
|
|
|
extern LPTOP_LEVEL_EXCEPTION_FILTER lpTopLevelExceptionFilter; |
|
|
|
LONG __stdcall TopLevelExceptionFilter(PEXCEPTION_POINTERS ExceptionInfo); |
|
LPTOP_LEVEL_EXCEPTION_FILTER fault_get_filter(); |
|
|
|
#endif /* __FAULT_H__ */
|
|
|