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.

70 lines
1.7 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997-2001.
  5. //
  6. // File: password.h
  7. //
  8. // Contents:
  9. //
  10. //----------------------------------------------------------------------------
  11. #if !defined(AFX_PASSWORD_H__2BCA22DA_8E91_11D1_85F9_00C04FB94F17__INCLUDED_)
  12. #define AFX_PASSWORD_H__2BCA22DA_8E91_11D1_85F9_00C04FB94F17__INCLUDED_
  13. #if _MSC_VER >= 1000
  14. #pragma once
  15. #endif // _MSC_VER >= 1000
  16. // Password.h : header file
  17. //
  18. /*
  19. // This dialog is used by EFS Recovery agent export key code, which is
  20. // currently commented out.
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CPassword dialog
  23. class CPassword : public CHelpDialog
  24. {
  25. // Construction
  26. public:
  27. virtual ~CPassword();
  28. LPCWSTR GetPassword() const;
  29. CPassword(CWnd* pParent = NULL); // standard constructor
  30. // Dialog Data
  31. //{{AFX_DATA(CPassword)
  32. enum { IDD = IDD_PASSWORD };
  33. CEdit m_password1Edit;
  34. CString m_strPassword1;
  35. CString m_strPassword2;
  36. //}}AFX_DATA
  37. // Overrides
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CPassword)
  40. protected:
  41. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. protected:
  45. virtual void DoContextHelp (HWND hWndControl);
  46. void ClearPasswords ();
  47. // Generated message map functions
  48. //{{AFX_MSG(CPassword)
  49. virtual void OnOK();
  50. virtual void OnCancel();
  51. virtual BOOL OnInitDialog();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. private:
  55. };
  56. */
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_PASSWORD_H__2BCA22DA_8E91_11D1_85F9_00C04FB94F17__INCLUDED_)