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.

68 lines
1.6 KiB

  1. #if !defined(AFX_MANAGECERTPAGE_H__A57C38A8_3B7F_11D2_817E_0000F87A921B__INCLUDED_)
  2. #define AFX_MANAGECERTPAGE_H__A57C38A8_3B7F_11D2_817E_0000F87A921B__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ManageCertPage.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CManageCertPage dialog
  10. class CCertificate;
  11. class CManageCertPage : public CIISWizardPage
  12. {
  13. DECLARE_DYNCREATE(CManageCertPage)
  14. // Construction
  15. public:
  16. CManageCertPage(CCertificate * pCert = NULL);
  17. ~CManageCertPage();
  18. enum
  19. {
  20. IDD_PAGE_NEXT_RENEW = IDD_PAGE_WIZ_CHOOSE_CATYPE,
  21. IDD_PAGE_NEXT_REMOVE = IDD_PAGE_WIZ_REMOVE_CERT,
  22. IDD_PAGE_NEXT_REPLACE = IDD_PAGE_WIZ_CHOOSE_CERT,
  23. IDD_PAGE_PREV = IDD_PAGE_WELCOME_START
  24. };
  25. enum
  26. {
  27. CONTINUE_RENEW = 0,
  28. CONTINUE_REMOVE,
  29. CONTINUE_REPLACE
  30. };
  31. // Dialog Data
  32. //{{AFX_DATA(CManageCertPage)
  33. enum { IDD = IDD_PAGE_WIZ_MANAGE_CERT };
  34. int m_Index;
  35. //}}AFX_DATA
  36. CCertificate * m_pCert;
  37. // Overrides
  38. // ClassWizard generate virtual function overrides
  39. //{{AFX_VIRTUAL(CManageCertPage)
  40. public:
  41. virtual LRESULT OnWizardBack();
  42. virtual LRESULT OnWizardNext();
  43. virtual BOOL OnSetActive();
  44. protected:
  45. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  46. //}}AFX_VIRTUAL
  47. // Implementation
  48. protected:
  49. // Generated message map functions
  50. //{{AFX_MSG(CManageCertPage)
  51. virtual BOOL OnInitDialog();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_MANAGECERTPAGE_H__A57C38A8_3B7F_11D2_817E_0000F87A921B__INCLUDED_)