#include <windows.h>
#include <setjmp.h>
#include "seh.h"
Go to the source code of this file.
◆ main()
Definition at line 11 of file seh0022.c.
11 {
14
16
17 try {
18 if (_setjmp(JumpBuffer) == 0) {
19
20
22 } else {
23
24
26 }
27 }
28 finally {
29
32
33
35 longjmp(JumpBuffer, 1);
36 }
37 }
39
42 return -1;
43 }
44
45 return 0;
46}
static LARGE_INTEGER Counter
◆ test
char test[] = "SEH0022.c" |