home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / STDREG.PAK / DIALOG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.4 KB  |  50 lines

  1. // dialog.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CStdRegSetupDlg dialog
  15.  
  16. class CStdRegSetupDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CStdRegSetupDlg(CWnd* pParent = NULL);  // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CStdRegSetupDlg)
  24.     enum { IDD = IDD_STDREG_DIALOG };
  25.     CStatic m_ctlProgress;
  26.     //}}AFX_DATA
  27.  
  28.     // ClassWizard generate virtual function overrides
  29.     //{{AFX_VIRTUAL(CStdRegSetupDlg)
  30.     protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. protected:
  36.     HICON m_hIcon;
  37.  
  38.     // Generated message map functions
  39.     //{{AFX_MSG(CStdRegSetupDlg)
  40.     virtual BOOL OnInitDialog();
  41.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  42.     afx_msg void OnPaint();
  43.     afx_msg HCURSOR OnQueryDragIcon();
  44.     afx_msg void OnAddDataSource();
  45.     afx_msg void OnInitializeData();
  46.     virtual void OnOK();
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.