reactos/drivers/bluetooth/fbtusb/include/fbtSeXcpt.h
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

22 lines
398 B
C++

#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__