aboutsummaryrefslogtreecommitdiffhomepage
path: root/samples/excep/firstexc.h
blob: 689c1b462a7dad3bbc22733781ad42bd37719c6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//////////////////////////////////////////////////////////////////////////////
//
//  Detours Test Program (firstexc.h of firstexc.exe)
//
//  Microsoft Research Detours Package
//
//  Copyright (c) Microsoft Corporation.  All rights reserved.
//

#pragma once
#ifndef _FIRSTEXC_H_
#define _FIRSTEXC_H_

/////////////////////////////////////////////// First Chance Exception Filter.
//
LPTOP_LEVEL_EXCEPTION_FILTER WINAPI
DetourFirstChanceExceptionFilter(LPTOP_LEVEL_EXCEPTION_FILTER lpTopLevelFilter);

#endif // _FIRSTEXC_H_
//
////////////////////////////////////////////////////////////////  End of File.