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.

86 lines
1.3 KiB

  1. /*++
  2. Copyright (c) 1994-1998 Microsoft Corporation
  3. Module Name :
  4. basdom.h
  5. Abstract:
  6. Basic Domain Dialog Definitions
  7. Author:
  8. Ronald Meijer (ronaldm)
  9. Project:
  10. Internet Services Manager
  11. Revision History:
  12. --*/
  13. class CBasDomainDlg : public CDialog
  14. /*++
  15. Class Description:
  16. Basic authentication domain dialog
  17. Public Interface:
  18. CBasDomainDlg : Constructor
  19. GetBasicDomain : Get the domain entered
  20. --*/
  21. {
  22. //
  23. // Construction
  24. //
  25. public:
  26. CBasDomainDlg(
  27. IN LPCTSTR lpstrDomainName,
  28. IN CWnd * pParent = NULL
  29. );
  30. //
  31. // Access
  32. //
  33. public:
  34. CString & GetBasicDomain() { return m_strBasDomain; }
  35. //
  36. // Dialog Data
  37. //
  38. protected:
  39. //{{AFX_DATA(CBasDomainDlg)
  40. enum { IDD = IDD_BASIC_DOMAIN };
  41. CEdit m_edit_BasicDomain;
  42. CString m_strBasDomain;
  43. //}}AFX_DATA
  44. //
  45. // Overrides
  46. //
  47. protected:
  48. // ClassWizard generated virtual function overrides
  49. //{{AFX_VIRTUAL(CBasDomainDlg)
  50. protected:
  51. virtual void DoDataExchange(CDataExchange * pDX);
  52. //}}AFX_VIRTUAL
  53. //
  54. // Implementation
  55. //
  56. protected:
  57. // Generated message map functions
  58. //{{AFX_MSG(CBasDomainDlg)
  59. afx_msg void OnButtonBrowse();
  60. afx_msg void OnButtonDefault();
  61. //}}AFX_MSG
  62. DECLARE_MESSAGE_MAP()
  63. };