#include <windows.h>
#include "seh.h"
Go to the source code of this file.
◆ main()
Definition at line 15 of file seh0016.c.
15 {
17
19
20 try {
21 try {
22 try {
23
26 }
28
30 goto t11;
31 }
33 }
34 finally {
35
37 }
39
40 t11:
41 ;
42 }
43 finally {
44
46 }
48
51 return -1;
52 }
53
54 return 0;
55}
void rtlRaiseExceptin(DWORD Status)
static LARGE_INTEGER Counter
#define EXCEPTION_INT_OVERFLOW
◆ rtlRaiseExceptin()
Definition at line 10 of file seh0016.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[] = "SEH0016.c" |