#include <windows.h>
#include "seh.h"
Go to the source code of this file.
◆ main()
Definition at line 35 of file seh0010.c.
35 {
37
39
40 try {
42 }
44
45 {
47 }
49
52 return -1;
53 }
54
55 return 0;
56}
#define STATUS_ACCESS_VIOLATION
void tfRaiseExcpt(DWORD Status, PLONG Counter)
static LARGE_INTEGER Counter
◆ rtlRaiseExcpt()
Definition at line 10 of file seh0010.c.
10 {
12 return;
13}
VOID WINAPI RaiseException(_In_ DWORD dwExceptionCode, _In_ DWORD dwExceptionFlags, _In_ DWORD nNumberOfArguments, _In_opt_ const ULONG_PTR *lpArguments)
Referenced by tfRaiseExcpt().
◆ tfRaiseExcpt()
Definition at line 15 of file seh0010.c.
15 {
16 try {
18 }
19 finally {
21
22
23
24
25 {
27 } else {
29 }
30 }
32 return;
33}
void rtlRaiseExcpt(DWORD Status)
#define abnormal_termination
Referenced by main().
◆ test
char test[] = "SEH0010.c" |