1 #ifndef __SEEXCEPTION_H__ 2 #define __SEEXCEPTION_H__ 3 4 #include <windows.h> 5 6 class fbtSeException 7 { 8 public: 9 fbtSeException(unsigned int nSeCode, _EXCEPTION_POINTERS* pExcPointers); 10 fbtSeException(fbtSeException & CseExc); 11 12 unsigned int GetSeCode(void); 13 14 private: 15 unsigned int m_nSeCode; 16 _EXCEPTION_POINTERS* m_pExcPointers; 17 18 }; 19 20 void fbtXcptEnableSEHandling(); 21 22 #endif //__SEEXCEPTION_H__ 23