#include <windows.h>
#include "seh.h"
Go to the source code of this file.
◆ fret()
Definition at line 10 of file seh0019.c.
10 {
11 try {
12 try {
13
15 }
16 finally {
17
19#ifdef _MSC_VER
20 return;
21#endif
22 }
24#ifndef _MSC_VER
25 return;
26#endif
27 }
28 finally {
29
31 }
33 return;
34}
static LARGE_INTEGER Counter
Referenced by main().
◆ main()
Definition at line 36 of file seh0019.c.
36 {
38
40
41 try {
42
45 }
46 finally {
47
49 }
51
54 return -1;
55 }
56
57 return 0;
58}
◆ test
char test[] = "SEH0019.c" |