ReactOS 0.4.15-dev-7842-g558ab78
seh0057.c File Reference
#include <windows.h>
#include "seh.h"
Include dependency graph for seh0057.c:

Go to the source code of this file.

Functions

int main ()
 

Variables

char test [] = "seh0057.c"
 

Function Documentation

◆ main()

int main ( void  )

Definition at line 10 of file seh0057.c.

10 {
12
13 Counter = 0;
14
15 try {
16 Counter += 1;
17 }
18 finally {
19 if (abnormal_termination() == FALSE) {
20 try {
21 Counter += 3;
22 }
23 finally {
24 if (abnormal_termination() == FALSE) {
25 Counter += 5;
26 }
27 }
28 endtry
29 }
30 }
31 endtry
32
33 if (Counter != 9) {
34 printf("TEST 57 FAILED, Counter = %d\n", Counter);
35 return -1;
36 }
37
38 return 0;
39}
#define FALSE
Definition: types.h:117
#define printf
Definition: freeldr.h:93
long LONG
Definition: pedump.c:60
#define endtry
Definition: seh.h:24
#define abnormal_termination
Definition: seh.h:25
static LARGE_INTEGER Counter
Definition: clock.c:43

Variable Documentation

◆ test

char test[] = "seh0057.c"

Definition at line 8 of file seh0057.c.