#include <windows.h>
#include <setjmp.h>
#include "seh.h"
Go to the source code of this file.
◆ main()
Definition at line 11 of file seh0020.c.
11 {
14
16
17 if (_setjmp(JumpBuffer) == 0) {
18
19
21 longjmp(JumpBuffer, 1);
22 } else {
23
24
26 }
27
30 return -1;
31 }
32
33 return 0;
34}
static LARGE_INTEGER Counter
◆ test
char test[] = "SEH0020.c" |