mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
22 lines
No EOL
398 B
C++
Executable file
22 lines
No EOL
398 B
C++
Executable file
#ifndef __SEEXCEPTION_H__
|
|
#define __SEEXCEPTION_H__
|
|
|
|
#include <windows.h>
|
|
|
|
class fbtSeException
|
|
{
|
|
public:
|
|
fbtSeException(unsigned int nSeCode, _EXCEPTION_POINTERS* pExcPointers);
|
|
fbtSeException(fbtSeException & CseExc);
|
|
|
|
unsigned int GetSeCode(void);
|
|
|
|
private:
|
|
unsigned int m_nSeCode;
|
|
_EXCEPTION_POINTERS* m_pExcPointers;
|
|
|
|
};
|
|
|
|
void fbtXcptEnableSEHandling();
|
|
|
|
#endif //__SEEXCEPTION_H__
|