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.

72 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1994-1998 Microsoft Corporation
  3. Module Name :
  4. ssldlg.h
  5. Abstract:
  6. SSL Dialog definitions
  7. Author:
  8. Ronald Meijer (ronaldm)
  9. Project:
  10. Internet Services Manager
  11. Revision History:
  12. --*/
  13. class CSSLDlg : public CDialog
  14. {
  15. //
  16. // Construction
  17. //
  18. public:
  19. CSSLDlg(
  20. IN DWORD & dwAccessPermissions,
  21. IN BOOL fSSL128Supported,
  22. IN CWnd * pParent = NULL
  23. );
  24. //
  25. // Dialog Data
  26. //
  27. protected:
  28. //{{AFX_DATA(CSSLDlg)
  29. enum { IDD = IDD_DIALOG_SSL };
  30. BOOL m_fRequire128BitSSL;
  31. //}}AFX_DATA
  32. //
  33. // Overrides
  34. //
  35. protected:
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CSSLDlg)
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. //
  42. // Implementation
  43. //
  44. protected:
  45. // Generated message map functions
  46. //{{AFX_MSG(CSSLDlg)
  47. virtual void OnOK();
  48. virtual BOOL OnInitDialog();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. private:
  52. DWORD & m_dwAccessPermissions;
  53. BOOL m_fSSL128Supported;
  54. };