IsRuning.h
上传用户:kkzhu_0
上传日期:2007-01-05
资源大小:214k
文件大小:1k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // IsRuning.h : header file
  2. //
  3. #ifndef _CISRUNG_H
  4. #define _CISRUNG_H
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CIsRuning thread
  7. class CIsRuning : public CWinThread
  8. {
  9. DECLARE_DYNCREATE(CIsRuning)
  10. public:
  11. CIsRuning();           // protected constructor used by dynamic creation
  12. // Attributes
  13. public:
  14. CFiveView *pView;
  15. static int CurM;
  16. static int CurN;
  17. void SetpView( CFiveView* p );
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CIsRuning)
  23. public:
  24. virtual BOOL InitInstance();
  25. virtual int ExitInstance();
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CIsRuning();
  30. // Generated message map functions
  31. //{{AFX_MSG(CIsRuning)
  32. // NOTE - the ClassWizard will add and remove member functions here.
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. #endif
  37. /////////////////////////////////////////////////////////////////////////////