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.

55 lines
1.2 KiB

  1. #if _MSC_VER >= 1000
  2. #pragma once
  3. #endif // _MSC_VER >= 1000
  4. // chap.h : header file
  5. //
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CMSCHAPSetting dialog
  8. class CMSCHAPSetting : public CDialog
  9. {
  10. // Construction
  11. public:
  12. CMSCHAPSetting(CWnd* pParent = NULL); // standard constructor
  13. BOOL Initialize ( DWORD * pdwAutoLogin, BOOL bReadOnly = FALSE);
  14. // Dialog Data
  15. //{{AFX_DATA(CMSCHAPSetting)
  16. enum { IDD = IDD_CHAP_CONFIGURE};
  17. BOOL m_dwAutoWinLogin;
  18. //}}AFX_DATA
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CMSCHAPSetting)
  22. protected:
  23. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. protected:
  27. DWORD *pdwAutoWinLogin;
  28. BOOL m_bReadOnly;
  29. // Generated message map functions
  30. //{{AFX_MSG(CMSCHAPSetting)
  31. virtual BOOL OnInitDialog();
  32. virtual void OnOK();
  33. afx_msg void OnCheckCHAPAutoLogin();
  34. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. void ControlsValuesToSM (DWORD *pdwAutoWinLogin);
  38. };
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  41.