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.

45 lines
1.1 KiB

  1. // InitDlg.cpp : implementation file
  2. //
  3. #include "precomp.hxx"
  4. #ifdef _DEBUG
  5. #define new DEBUG_NEW
  6. #undef THIS_FILE
  7. static char THIS_FILE[] = __FILE__;
  8. #endif
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CInitDlg dialog
  11. CInitDlg::CInitDlg(CWnd* pParent /*=NULL*/)
  12. : CDialog(CInitDlg::IDD, pParent)
  13. {
  14. //{{AFX_DATA_INIT(CInitDlg)
  15. m_szLDAP_Path = _T("");
  16. m_szGPT_Path = _T("");
  17. //}}AFX_DATA_INIT
  18. }
  19. void CInitDlg::DoDataExchange(CDataExchange* pDX)
  20. {
  21. CDialog::DoDataExchange(pDX);
  22. //{{AFX_DATA_MAP(CInitDlg)
  23. DDX_Text(pDX, IDC_EDIT1, m_szLDAP_Path);
  24. DDV_MaxChars(pDX, m_szLDAP_Path, 260);
  25. DDX_Text(pDX, IDC_EDIT2, m_szGPT_Path);
  26. DDV_MaxChars(pDX, m_szGPT_Path, 260);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CInitDlg, CDialog)
  30. //{{AFX_MSG_MAP(CInitDlg)
  31. // NOTE: the ClassWizard will add message map macros here
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CInitDlg message handlers