#include <windows.h>
#include "seh.h"
Go to the source code of this file.
◆ eret()
Definition at line 15 of file seh0018.c.
15 {
16 try {
17 try {
19 }
21
22 {
23
25 return;
26 }
28 }
29 finally {
30
32 }
34
35 return;
36}
void rtlRaiseException(DWORD Status)
static LARGE_INTEGER Counter
Referenced by main().
◆ main()
Definition at line 38 of file seh0018.c.
38 {
39
41
43
44 try {
45
48 }
49 finally {
50
52 }
54
57 return -1;
58 }
59
60 return 0;
61}
void eret(DWORD Status, PLONG Counter)
#define EXCEPTION_ACCESS_VIOLATION
◆ rtlRaiseException()
Definition at line 10 of file seh0018.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 eret().
◆ test
char test[] = "SEH0018.c" |