ReactOS 0.4.15-dev-7918-g2a2556c
seh0016.c File Reference
#include <windows.h>
#include "seh.h"
Include dependency graph for seh0016.c:

Go to the source code of this file.

Functions

void rtlRaiseExceptin (DWORD Status)
 
int main ()
 

Variables

char test [] = "SEH0016.c"
 

Function Documentation

◆ main()

int main ( void  )

Definition at line 15 of file seh0016.c.

15 {
17
18 Counter = 0;
19
20 try {
21 try {
22 try {
23 /* set counter = 1 and raise exception */
24 Counter += 1;
26 }
27 except(1) {
28 /* set counter = 2 */
29 Counter += 1;
30 goto t11; /* can't jump into the body of a try/finally */
31 }
32 endtry
33 }
34 finally {
35 /* set counter = 3 */
36 Counter += 1;
37 }
38 endtry
39
40 t11:
41 ;
42 }
43 finally {
44 /* set counter = 4 */
45 Counter += 1;
46 }
47 endtry
48
49 if (Counter != 4) {
50 printf("TEST 16 FAILED. Counter = %d\n\r", Counter);
51 return -1;
52 }
53
54 return 0;
55}
#define except(x)
Definition: btrfs_drv.h:136
#define printf
Definition: freeldr.h:93
long LONG
Definition: pedump.c:60
void rtlRaiseExceptin(DWORD Status)
Definition: seh0016.c:10
#define endtry
Definition: seh.h:24
static LARGE_INTEGER Counter
Definition: clock.c:43
#define EXCEPTION_INT_OVERFLOW
Definition: winbase.h:324

◆ rtlRaiseExceptin()

void rtlRaiseExceptin ( DWORD  Status)

Definition at line 10 of file seh0016.c.

10 {
11 RaiseException(Status, 0, /*no flags*/ 0, 0);
12 return;
13}
VOID WINAPI RaiseException(_In_ DWORD dwExceptionCode, _In_ DWORD dwExceptionFlags, _In_ DWORD nNumberOfArguments, _In_opt_ const ULONG_PTR *lpArguments)
Definition: except.c:700
Status
Definition: gdiplustypes.h:25

Referenced by main().

Variable Documentation

◆ test

char test[] = "SEH0016.c"

Definition at line 8 of file seh0016.c.