home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / atl / connect / mdrive / drivedlg.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  64 lines

  1. // DriveDlg.h : header file
  2. //
  3. // This is a part of the Active Template Library.
  4. // Copyright (C) 1996-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Active Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Active Template Library product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMDriveDlg dialog
  15.  
  16. const int nMaxThreads = 10;
  17.  
  18. class CMDriveDlg : public CDialog
  19. {
  20. // Construction
  21. public:
  22.     CMDriveDlg(CWnd* pParent = NULL);   // standard constructor
  23.     ~CMDriveDlg() { delete [] m_arrAdvise;}
  24.  
  25. // Dialog Data
  26.     //{{AFX_DATA(CMDriveDlg)
  27.     enum { IDD = IDD_MDRIVE_DIALOG };
  28.         // NOTE: the ClassWizard will add data members here
  29.     //}}AFX_DATA
  30.  
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CMDriveDlg)
  33.     protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38. protected:
  39.     HICON m_hIcon;
  40.     CComPtr<IRandom> pRandom;
  41.     long m_arrID[nMaxThreads];
  42. //  int m_nThreadCnt;
  43.     DWORD *m_arrAdvise;
  44.     int m_nMaxAdvises;
  45.     int m_nAdviseCnt;
  46.     BOOL Unadvise();
  47.     BOOL Stop();
  48.  
  49.     // Generated message map functions
  50.     //{{AFX_MSG(CMDriveDlg)
  51.     virtual BOOL OnInitDialog();
  52.     afx_msg void OnPaint();
  53.     afx_msg HCURSOR OnQueryDragIcon();
  54.     afx_msg void OnStart();
  55.     afx_msg void OnStop();
  56.     afx_msg void OnStopAll();
  57.     virtual void OnCancel();
  58.     virtual void OnOK();
  59.     afx_msg void OnAdvise();
  60.     afx_msg void OnUnadvise();
  61.     //}}AFX_MSG
  62.     DECLARE_MESSAGE_MAP()
  63. };
  64.