mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fix for compile error
svn path=/trunk/; revision=2258
This commit is contained in:
parent
9a6d677db3
commit
6e4a29babf
1 changed files with 1 additions and 9 deletions
|
@ -1,13 +1,5 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
typedef enum _EXCEPTION_DISPOSITION {
|
|
||||||
ExceptionContinueExecution,
|
|
||||||
ExceptionContinueSearch,
|
|
||||||
ExceptionNestedException,
|
|
||||||
ExceptionCollidedUnwind
|
|
||||||
} EXCEPTION_DISPOSITION;
|
|
||||||
|
|
||||||
|
|
||||||
EXCEPTION_DISPOSITION
|
EXCEPTION_DISPOSITION
|
||||||
_except_handler2(
|
_except_handler2(
|
||||||
struct _EXCEPTION_RECORD *ExceptionRecord,
|
struct _EXCEPTION_RECORD *ExceptionRecord,
|
||||||
|
@ -15,5 +7,5 @@ void *Frame,
|
||||||
struct _CONTEXT *ContextRecord,
|
struct _CONTEXT *ContextRecord,
|
||||||
void *DispatcherContext)
|
void *DispatcherContext)
|
||||||
{
|
{
|
||||||
printf("excpetion handler\n");
|
printf("exception handler\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue