DaemonDlgThread.h
上传用户:surprise9
上传日期:2007-01-04
资源大小:426k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // DaemonDlgThread.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CDaemonDlgThread thread
  5. class CDaemonDlgThread : public CWinThread
  6. {
  7. DECLARE_DYNCREATE(CDaemonDlgThread)
  8. protected:
  9. CDaemonDlgThread();           // protected constructor used by dynamic creation
  10. // Attributes
  11. public:
  12. // Operations
  13. public:
  14. CRemoteInterface *m_pRI;
  15. DWORD m_Flags;
  16. CWarClientAPI *m_pAPI;
  17. // Overrides
  18. // ClassWizard generated virtual function overrides
  19. //{{AFX_VIRTUAL(CDaemonDlgThread)
  20. public:
  21. virtual BOOL InitInstance();
  22. virtual int ExitInstance();
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. protected:
  26. virtual ~CDaemonDlgThread();
  27. // Generated message map functions
  28. //{{AFX_MSG(CDaemonDlgThread)
  29. // NOTE - the ClassWizard will add and remove member functions here.
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. #define DDT_SHOW_NTSERVICE 0x0001
  34. /////////////////////////////////////////////////////////////////////////////