#include <windows.h>
#include <setjmp.h>
#include "seh.h"
Go to the source code of this file.
◆ main()
Definition at line 11 of file seh0021.c.
11 {
14
16
17 if (_setjmp(JumpBuffer) == 0) {
18 try {
19
20
22 }
23 finally {
24
25
27 longjmp(JumpBuffer, 1);
28 }
30 } else {
31
32
34 }
35
38 return -1;
39 }
40
41 return 0;
42}
static LARGE_INTEGER Counter
◆ test
char test[] = "SEH0021.c" |