Win32Exception.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /********************************************************************
  2. created: 2003/02/13
  3. file base: Win32Exception
  4. file ext: h
  5. author: liupeng
  6. purpose: Header file for CWin32Exception class
  7. *********************************************************************/
  8. #ifndef __INCLUDE_WIN32EXCEPTION_H__
  9. #define __INCLUDE_WIN32EXCEPTION_H__
  10. #if defined (_MSC_VER) && (_MSC_VER >= 1020)
  11. #pragma once
  12. #endif
  13. #include "Exception.h"
  14. /*
  15.  * namespace OnlineGameLib::Win32
  16.  */
  17. namespace OnlineGameLib {
  18. namespace Win32 {
  19. /*
  20.  * CWin32Exception
  21.  */
  22. class CWin32Exception : public CException
  23. {
  24. public: 
  25. CWin32Exception( const _tstring &where, DWORD error );
  26. DWORD GetError() const;
  27. protected:
  28. DWORD m_error;
  29. };
  30. } // End of namespace OnlineGameLib
  31. } // End of namespace Win32
  32. #endif //__INCLUDE_WIN32EXCEPTION_H__