ReactOS
0.4.16-dev-122-g325d74c
seh0012.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
8
char
test
[] =
"SEH0012.c"
;
9
10
void
rtlRaiseException
(
DWORD
Status
) {
11
RaiseException
(
Status
, 0,
/*no flags*/
0, 0);
12
return
;
13
}
14
15
int
main
() {
16
LONG
Counter
;
17
18
Counter
= 0;
19
20
try
{
21
rtlRaiseException
(
EXCEPTION_ACCESS_VIOLATION
);
22
}
23
except
((
GetExceptionCode
() ==
STATUS_ACCESS_VIOLATION
) ? 1 : 0)
24
/* excpetion handler should get executed */
25
{
26
Counter
+= 1;
27
try
{
28
rtlRaiseException
(
EXCEPTION_CONTINUE_SEARCH
);
29
}
30
except
((
GetExceptionCode
() ==
EXCEPTION_CONTINUE_SEARCH
) ? 1 : 0)
31
/* excpetion handler should get executed */
32
{
33
if
(
Counter
!= 1) {
34
printf
(
"TEST 12 FAILED. Counter = %d\n\r"
,
Counter
);
35
return
-1;
36
}
37
Counter
+= 1;
38
}
39
endtry
40
}
41
endtry
42
43
if
(
Counter
!= 2) {
44
printf
(
"TEST 12 FAILED. Counter = %d\n\r"
,
Counter
);
45
return
-1;
46
}
47
48
return
0;
49
}
except
#define except(x)
Definition:
btrfs_drv.h:136
RaiseException
VOID WINAPI RaiseException(_In_ DWORD dwExceptionCode, _In_ DWORD dwExceptionFlags, _In_ DWORD nNumberOfArguments, _In_opt_ const ULONG_PTR *lpArguments)
Definition:
except.c:700
DWORD
unsigned long DWORD
Definition:
ntddk_ex.h:95
printf
#define printf
Definition:
freeldr.h:97
Status
Status
Definition:
gdiplustypes.h:25
EXCEPTION_CONTINUE_SEARCH
#define EXCEPTION_CONTINUE_SEARCH
Definition:
excpt.h:86
STATUS_ACCESS_VIOLATION
#define STATUS_ACCESS_VIOLATION
Definition:
ntstatus.h:242
LONG
long LONG
Definition:
pedump.c:60
rtlRaiseException
void rtlRaiseException(DWORD Status)
Definition:
seh0012.c:10
test
char test[]
Definition:
seh0012.c:8
main
int main()
Definition:
seh0012.c:15
seh.h
endtry
#define endtry
Definition:
seh.h:24
GetExceptionCode
#define GetExceptionCode()
Definition:
seh.h:27
Counter
static LARGE_INTEGER Counter
Definition:
clock.c:43
EXCEPTION_ACCESS_VIOLATION
#define EXCEPTION_ACCESS_VIOLATION
Definition:
winbase.h:311
modules
rostests
apitests
compiler
ms
seh
seh0012.c
Generated on Sat Oct 12 2024 06:06:36 for ReactOS by
1.9.6