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.

65 lines
1.3 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. FPInfo.h : header file
  5. File History:
  6. JonY Apr-96 created
  7. --*/
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CFPInfo dialog
  10. class CFPInfo : public CWizBaseDlg
  11. {
  12. DECLARE_DYNCREATE(CFPInfo)
  13. // Construction
  14. public:
  15. CFPInfo();
  16. ~CFPInfo();
  17. // Dialog Data
  18. //{{AFX_DATA(CFPInfo)
  19. enum { IDD = IDD_FPNW_DLG };
  20. CSpinButtonCtrl m_sbConconSpin;
  21. CSpinButtonCtrl m_sbGraceLogins;
  22. BOOL m_bExpireNWPassword;
  23. int m_nGraceLogins;
  24. int m_nConcurrentConnections;
  25. CString m_csCaption;
  26. UINT m_sAllowedGraceLogins;
  27. UINT m_sConcurrentConnections;
  28. //}}AFX_DATA
  29. // Overrides
  30. // ClassWizard generate virtual function overrides
  31. //{{AFX_VIRTUAL(CFPInfo)
  32. public:
  33. virtual LRESULT OnWizardNext();
  34. virtual LRESULT OnWizardBack();
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CFPInfo)
  42. afx_msg void OnGraceLoginRadio();
  43. afx_msg void OnGraceLoginRadio2();
  44. virtual BOOL OnInitDialog();
  45. afx_msg void OnConcurrentConnectionsRadio();
  46. afx_msg void OnConcurrentConnectionsRadio2();
  47. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };