ReactOS 0.4.15-dev-7953-g1f49173
seh0052.c
Go to the documentation of this file.
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for
3// full license information.
4
5#include <windows.h>
6#include "seh.h"
7
8char test[] = "seh0052.c";
9
10LONG Echo(LONG Value) { return Value; }
11
12int main() {
14 ULONG Index1;
15
16 Counter = 0;
17
18 try {
19 for (Index1 = 0; Index1 < 10; Index1 += 1) {
20 if (Echo(Index1) == Index1) {
21 Counter += 3;
22 leave;
23 }
24 Counter += 100;
25 }
26 }
27 finally {
28 if (AbnormalTermination() == 0) {
29 Counter += 5;
30 }
31 }
32 endtry
33
34 if (Counter != 8) {
35 printf("TEST 52 FAILED, Counter = %d\n", Counter);
36 return -1;
37 }
38
39 return 0;
40}
#define leave
Definition: btrfs_drv.h:138
#define printf
Definition: freeldr.h:97
long LONG
Definition: pedump.c:60
char test[]
Definition: seh0052.c:8
int main()
Definition: seh0052.c:12
#define AbnormalTermination()
Definition: seh.h:28
#define endtry
Definition: seh.h:24
static LARGE_INTEGER Counter
Definition: clock.c:43
@ Echo
Definition: telnetd.h:64
uint32_t ULONG
Definition: typedefs.h:59
_Must_inspect_result_ _In_ WDFKEY _In_ PCUNICODE_STRING _Out_opt_ PUSHORT _Inout_opt_ PUNICODE_STRING Value
Definition: wdfregistry.h:413