DlgStruct.h
上传用户:tjjuxin
上传日期:2021-06-01
资源大小:3552k
文件大小:1k
源码类别:

Shell编程

开发平台:

Visual C++

  1. #if !defined(AFX_DLGSTRUCT_H__F6137E3A_59BD_4C3E_8E79_0017D0170415__INCLUDED_)
  2. #define AFX_DLGSTRUCT_H__F6137E3A_59BD_4C3E_8E79_0017D0170415__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DlgStruct.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDlgStruct dialog
  10. class CDlgStruct : public CDialog
  11. {
  12. // Construction
  13. public:
  14. //0 for Header structs
  15. //1 for ..
  16. CDlgStruct(CWnd* pParent = NULL, char *szBuff = NULL, int i=0);   // standard constructor
  17. private:
  18. int m_itype;
  19. char *m_szBuff;
  20. // Dialog Data
  21. //{{AFX_DATA(CDlgStruct)
  22. enum { IDD = IDD_DLG_STRUCT };
  23. // NOTE: the ClassWizard will add data members here
  24. //}}AFX_DATA
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CDlgStruct)
  28. protected:
  29. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. protected:
  33. // Generated message map functions
  34. //{{AFX_MSG(CDlgStruct)
  35. virtual BOOL OnInitDialog();
  36. afx_msg void OnChangeEdit1();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_DLGSTRUCT_H__F6137E3A_59BD_4C3E_8E79_0017D0170415__INCLUDED_)