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

Ftp客户端

开发平台:

Visual C++

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