Dlg.h 1001 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // Dlg.h : header file
  2. //
  3. #ifndef DLG_H
  4. #define DLG_H
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CDlg dialog
  7. class CDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11. CDlg(CWnd* pParent = NULL); // standard constructor
  12. // Dialog Data
  13. //{{AFX_DATA(CDlg)
  14. enum { IDD = IDD_DIALOG1 };
  15. //}}AFX_DATA
  16. // Overrides
  17. // ClassWizard generated virtual function overrides
  18. //{{AFX_VIRTUAL(CDlg)
  19. protected:
  20. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  21. //}}AFX_VIRTUAL
  22. // Implementation
  23. protected:
  24. HICON m_hIcon;
  25. // Generated message map functions
  26. //{{AFX_MSG(CDlg)
  27. virtual BOOL OnInitDialog();
  28. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  29. afx_msg void OnPaint();
  30. afx_msg HCURSOR OnQueryDragIcon();
  31. afx_msg void OnButton1();
  32. afx_msg void OnButton2();
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. //{{AFX_INSERT_LOCATION}}
  37. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  38. #endif