UserDlgThread.h
资源名称:warftpd.zip [点击查看]
上传用户:surprise9
上传日期:2007-01-04
资源大小:426k
文件大小:1k
源码类别:
Ftp客户端
开发平台:
Visual C++
- // UserDlgThread.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CUserDlgThread thread
- class CUserDlgThread : public CWinThread
- {
- DECLARE_DYNCREATE(CUserDlgThread)
- protected:
- CUserDlgThread(); // protected constructor used by dynamic creation
- // Attributes
- public:
- // Operations
- public:
- CRemoteInterface *m_pRI;
- CDialog *m_pDlg;
- CRemoteUsr *m_pRemoteUser;
- CWarClientAPI *m_pAPI;
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CUserDlgThread)
- public:
- virtual BOOL InitInstance();
- virtual int ExitInstance();
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- virtual ~CUserDlgThread();
- // Generated message map functions
- //{{AFX_MSG(CUserDlgThread)
- // NOTE - the ClassWizard will add and remove member functions here.
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////