ReactOS 0.4.15-dev-7924-g5949c20
seh0036.c File Reference
#include <windows.h>
#include "seh.h"
Include dependency graph for seh0036.c:

Go to the source code of this file.

Functions

int main ()
 

Variables

char test [] = "SEH0036.c"
 

Function Documentation

◆ main()

int main ( void  )

Definition at line 10 of file seh0036.c.

10 {
11 ULONG Index1;
13
14 Counter = 0;
15
16 for (Index1 = 0; Index1 < 10; Index1 += 1) {
17 try {
18 try {
19 if ((Index1 & 0x1) == 0) {
20 /* add 1 if index1 is odd */
21 Counter += 1;
22 }
23 }
24 finally {
25 /* always add 2 */
26 Counter += 2;
27 }
28 endtry
29 /* always add 4 */
30 Counter += 4;
31 }
32 finally {
33 /* always add 5 */
34 Counter += 5;
35#if defined(_MSC_VER) && !defined(__clang__)
36 continue;
37#endif
38 }
39 endtry
40 /* never get here due to continue */
41 Counter += 6;
42 }
43
44 if (Counter != 115) {
45 printf("TEST 36 FAILED. Counter = %d\n\r", Counter);
46 return -1;
47 }
48
49 return 0;
50}
#define printf
Definition: freeldr.h:93
long LONG
Definition: pedump.c:60
#define endtry
Definition: seh.h:24
static LARGE_INTEGER Counter
Definition: clock.c:43
uint32_t ULONG
Definition: typedefs.h:59

Variable Documentation

◆ test

char test[] = "SEH0036.c"

Definition at line 8 of file seh0036.c.