Leaked source code of windows server 2003
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.

74 lines
1.7 KiB

  1. /*++
  2. Copyright (C) 1998-1999 Microsoft Corporation
  3. Module Name:
  4. fileprop.h
  5. Abstract:
  6. Header file for the files property page.
  7. --*/
  8. #ifndef _DIALOGS_H_08222000_
  9. #define _DIALOGS_H_08222000_
  10. #if _MSC_VER >= 1000
  11. #pragma once
  12. #endif // _MSC_VER >= 1000
  13. #define IDC_PWD_FIRST_HELP_CTRL_ID 2201
  14. #define IDD_PASSWORD_DLG 2200
  15. #define IDC_PASSWORD1 2201
  16. #define IDC_PASSWORD2 2202
  17. #define IDC_USERNAME 2203
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CPasswordDlg dialog
  20. class CPasswordDlg : public CDialog
  21. {
  22. // Construction
  23. public:
  24. CPasswordDlg(CWnd* pParent = NULL); // standard constructor
  25. virtual ~CPasswordDlg();
  26. DWORD SetContextHelpFilePath(const CString& rstrPath);
  27. // Dialog Data
  28. //{{AFX_DATA(CPasswordDlg)
  29. enum { IDD = IDD_PASSWORD_DLG };
  30. CString m_strUserName;
  31. CString m_strPassword1;
  32. CString m_strPassword2;
  33. //}}AFX_DATA
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CPasswordDlg)
  37. protected:
  38. virtual BOOL OnInitDialog();
  39. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43. // Generated message map functions
  44. //{{AFX_MSG(CPasswordDlg)
  45. virtual void OnOK();
  46. afx_msg BOOL OnHelpInfo(HELPINFO *);
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. private:
  50. CString m_strHelpFilePath;
  51. };
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  54. #endif // _DIALOGS_H_08222000_