Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1002 B

  1. // enterdlg.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. // CEnterDlg dialog
  14. class CEnterDlg : public CDialog
  15. {
  16. DECLARE_DYNAMIC(CEnterDlg)
  17. // Construction
  18. public:
  19. CEnterDlg(CWnd* pParent = NULL); // standard constructor
  20. // Dialog Data
  21. //{{AFX_DATA(CEnterDlg)
  22. enum { IDD = IDD_CHANGEDATA };
  23. CString m_strInput;
  24. //}}AFX_DATA
  25. // Implementation
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. // Generated message map functions
  29. //{{AFX_MSG(CEnterDlg)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };