aboutsummaryrefslogtreecommitdiff
path: root/winsup/mingw/samples/seh/exutil.h
blob: 79937f745ca1ced58a69bb12e919a79881b1f5c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Definitions of some internal stuff for exception handling, including
 * a version of the all-important EXCEPTION_REGISTRATION_RECORD.
 */

#ifndef _EXUTIL_H_
#define _EXUTIL_H_

#include <windows.h>
#include <excpt.h>

#ifdef	__cplusplus
extern "C" {
#endif

void WalkExceptionHandlers ();
void DumpExceptionRecord (struct _EXCEPTION_RECORD* pExRec);

#ifdef	__cplusplus
}
#endif

#endif