Fix for compile error

svn path=/trunk/; revision=2258
This commit is contained in:
Casper Hornstrup 2001-09-24 10:19:58 +00:00
parent 9a6d677db3
commit 6e4a29babf

View file

@ -1,13 +1,5 @@
#include <windows.h>
typedef enum _EXCEPTION_DISPOSITION {
ExceptionContinueExecution,
ExceptionContinueSearch,
ExceptionNestedException,
ExceptionCollidedUnwind
} EXCEPTION_DISPOSITION;
EXCEPTION_DISPOSITION
_except_handler2(
struct _EXCEPTION_RECORD *ExceptionRecord,
@ -15,5 +7,5 @@ void *Frame,
struct _CONTEXT *ContextRecord,
void *DispatcherContext)
{
printf("excpetion handler\n");
printf("exception handler\n");
}