AttackThread.h
上传用户:chenhai826
上传日期:2007-04-11
资源大小:72k
文件大小:1k
- // AttackThread.h: interface for the CAttackThread class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_ATTACKTHREAD_H__783C9B2B_412C_4C7F_B3B5_1630666F3CCC__INCLUDED_)
- #define AFX_ATTACKTHREAD_H__783C9B2B_412C_4C7F_B3B5_1630666F3CCC__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "Thread.h"
- class CReportParam;
- class CAttackThread : public CThread
- {
- int m_nPassword;
- int m_nTimes;
- CReportParam *m_pReport;
- public:
- CAttackThread(CWnd *pWnd,int nPwd);
- virtual ~CAttackThread();
- virtual BOOL InitWork();
- virtual BOOL Work();
- virtual void CleanupWork();
- static HWND m_hMainWnd;
- static CString m_Host;
- static CString m_User;
- static long m_nNum;
- };
- #endif // !defined(AFX_ATTACKTHREAD_H__783C9B2B_412C_4C7F_B3B5_1630666F3CCC__INCLUDED_)