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.

77 lines
1.6 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. void KillString( CString& str );
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CPasswordDlg dialog
  21. class CPasswordDlg : public CDialog
  22. {
  23. // Construction
  24. public:
  25. CPasswordDlg(CWnd* pParent = NULL); // standard constructor
  26. virtual ~CPasswordDlg();
  27. DWORD SetContextHelpFilePath(const CString& rstrPath);
  28. // Dialog Data
  29. //{{AFX_DATA(CPasswordDlg)
  30. enum { IDD = IDD_PASSWORD_DLG };
  31. CString m_strUserName;
  32. CString m_strPassword1;
  33. CString m_strPassword2;
  34. //}}AFX_DATA
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CPasswordDlg)
  38. protected:
  39. virtual BOOL OnInitDialog();
  40. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. protected:
  44. // Generated message map functions
  45. //{{AFX_MSG(CPasswordDlg)
  46. virtual void OnOK();
  47. afx_msg BOOL OnHelpInfo(HELPINFO *);
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. private:
  51. CString m_strHelpFilePath;
  52. };
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  55. #endif // _DIALOGS_H_08222000_