#include <windows.h>
#include "seh.h"
Go to the source code of this file.
◆ main()
Definition at line 15 of file seh0014.c.
15 {
17
19
20 try {
21 try {
23 }
25
26 {
28 goto t9;
29 }
31 }
32 finally
33
34 {
36 }
38
39t9:
40 ;
41
44 return -1;
45 }
46
47 return 0;
48}
#define STATUS_ACCESS_VIOLATION
#define GetExceptionCode()
void rtlRaiseExceptin(DWORD Status)
static LARGE_INTEGER Counter
#define EXCEPTION_ACCESS_VIOLATION
◆ rtlRaiseExceptin()
Definition at line 10 of file seh0014.c.
10 {
12 return;
13}
VOID WINAPI RaiseException(_In_ DWORD dwExceptionCode, _In_ DWORD dwExceptionFlags, _In_ DWORD nNumberOfArguments, _In_opt_ const ULONG_PTR *lpArguments)
Referenced by main().
◆ test
char test[] = "SEH0014.c" |