ReactOS 0.4.15-dev-7842-g558ab78
seh0028.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[] = "SEH0028.c";
9
10void addtwo(long First, long Second, long *Place) {
11 RaiseException(EXCEPTION_INT_OVERFLOW, 0, /*no flags*/ 0, 0);
12 /* not executed due to exception being raised */
13 *Place = First + Second;
14 return;
15}
16
17int main() {
19
20 Counter = 0;
21
22 try {
23 /* set counter = 1 */
24 Counter += 1;
25 addtwo(0x7fff0000, 0x10000, &Counter);
26 }
28 /* 1==EXECUTE HANDLER after unwinding */
29 {
30 /* set counter = 2 */
31 Counter += 1;
32 }
33 endtry
34
35 if (Counter != 2) {
36 printf("TEST 28 FAILED. Counter = %d\n\r", Counter);
37 return -1;
38 }
39
40 return 0;
41}
WCHAR Second[]
Definition: FormatMessage.c:12
WCHAR First[]
Definition: FormatMessage.c:11
#define except(x)
Definition: btrfs_drv.h:136
VOID WINAPI RaiseException(_In_ DWORD dwExceptionCode, _In_ DWORD dwExceptionFlags, _In_ DWORD nNumberOfArguments, _In_opt_ const ULONG_PTR *lpArguments)
Definition: except.c:700
#define printf
Definition: freeldr.h:93
#define STATUS_INTEGER_OVERFLOW
Definition: ntstatus.h:385
long LONG
Definition: pedump.c:60
void addtwo(long First, long Second, long *Place)
Definition: seh0028.c:10
char test[]
Definition: seh0028.c:8
int main()
Definition: seh0028.c:17
#define endtry
Definition: seh.h:24
#define GetExceptionCode()
Definition: seh.h:27
static LARGE_INTEGER Counter
Definition: clock.c:43
#define EXCEPTION_INT_OVERFLOW
Definition: winbase.h:324