DRIVEDLG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // DriveDlg.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CMDriveDlg dialog
  5. const int nMaxThreads = 10;
  6. class CMDriveDlg : public CDialog
  7. {
  8. // Construction
  9. public:
  10.     CMDriveDlg(CWnd* pParent = NULL);   // standard constructor
  11.     ~CMDriveDlg() { delete [] m_arrAdvise;}
  12. // Dialog Data
  13.     //{{AFX_DATA(CMDriveDlg)
  14.     enum { IDD = IDD_MDRIVE_DIALOG };
  15.         // NOTE: the ClassWizard will add data members here
  16.     //}}AFX_DATA
  17.     // ClassWizard generated virtual function overrides
  18.     //{{AFX_VIRTUAL(CMDriveDlg)
  19.     protected:
  20.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  21.     //}}AFX_VIRTUAL
  22. // Implementation
  23. protected:
  24.     HICON m_hIcon;
  25.     IRandomPtr pRandom;
  26.     long m_arrID[nMaxThreads];
  27. //  int m_nThreadCnt;
  28.     DWORD *m_arrAdvise;
  29.     int m_nMaxAdvises;
  30.     int m_nAdviseCnt;
  31.     BOOL Unadvise();
  32.     BOOL Stop();
  33.     // Generated message map functions
  34.     //{{AFX_MSG(CMDriveDlg)
  35.     virtual BOOL OnInitDialog();
  36.     afx_msg void OnPaint();
  37.     afx_msg HCURSOR OnQueryDragIcon();
  38.     afx_msg void OnStart();
  39.     afx_msg void OnStop();
  40.     afx_msg void OnStopAll();
  41.     virtual void OnCancel();
  42.     virtual void OnOK();
  43.     afx_msg void OnAdvise();
  44.     afx_msg void OnUnadvise();
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };