* Sync up to trunk head (r65394).
[reactos.git] / drivers / bluetooth / fbtusb / include / fbtSeXcpt.h
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__