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
2.0 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997-2001.
  5. //
  6. // File: selacct.h
  7. //
  8. // Contents: Property page to choose type of cert administration.
  9. //
  10. //----------------------------------------------------------------------------
  11. #if !defined(AFX_SELACCT_H__E76F93EC_23F0_11D1_A28B_00C04FB94F17__INCLUDED_)
  12. #define AFX_SELACCT_H__E76F93EC_23F0_11D1_A28B_00C04FB94F17__INCLUDED_
  13. #if _MSC_VER >= 1000
  14. #pragma once
  15. #endif // _MSC_VER >= 1000
  16. // SelAcct.h : header file
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CSelectAccountPropPage dialog
  20. class CSelectAccountPropPage : public CAutoDeletePropPage
  21. {
  22. // DECLARE_DYNCREATE(CSelectAccountPropPage)
  23. // Construction
  24. public:
  25. void AssignLocationPtr (DWORD* pdwLocation);
  26. // CSelectAccountPropPage(); // default, but don't use
  27. CSelectAccountPropPage(const bool m_bIsWindowsNT);
  28. virtual ~CSelectAccountPropPage();
  29. // Dialog Data
  30. //{{AFX_DATA(CSelectAccountPropPage)
  31. enum { IDD = IDD_PROPPAGE_CHOOSE_ACCOUNT };
  32. // NOTE - ClassWizard will add data members here.
  33. // DO NOT EDIT what you see in these blocks of generated code !
  34. //}}AFX_DATA
  35. // Overrides
  36. // ClassWizard generate virtual function overrides
  37. //{{AFX_VIRTUAL(CSelectAccountPropPage)
  38. public:
  39. virtual BOOL OnSetActive();
  40. protected:
  41. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. protected:
  45. // Generated message map functions
  46. //{{AFX_MSG(CSelectAccountPropPage)
  47. virtual BOOL OnInitDialog();
  48. afx_msg void OnPersonalAcct();
  49. afx_msg void OnServiceAcct();
  50. afx_msg void OnMachineAcct();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. private:
  54. const bool m_bIsWindowsNT;
  55. DWORD* m_pdwLocation;
  56. };
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_SELACCT_H__E76F93EC_23F0_11D1_A28B_00C04FB94F17__INCLUDED_)