Leaked source code of windows server 2003
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.

34 lines
921 B

  1. /******************************************************************************
  2. Header File: Profile Information Page.H
  3. Defines the class used to display the profile information sheet.
  4. Copyright (c) 1996 by Microsoft Corporation
  5. A Pretty Penny Enterprises Production
  6. Change History:
  7. 10-24-96 a-robkj@microsoft.com (Pretty Penny Enterprises) began coding this
  8. ******************************************************************************/
  9. #include "PropPage.H"
  10. #include "Profile.H"
  11. // CProfileInformationPage class- this handles the Profile Information page(s)
  12. class CProfileInformationPage: public CShellExtensionPage {
  13. CString m_csProfile;
  14. CProfile * m_pcpTarget;
  15. public:
  16. CProfileInformationPage(HINSTANCE hiWhere, LPCTSTR lpstrTarget);
  17. ~CProfileInformationPage();
  18. virtual BOOL OnInit();
  19. virtual BOOL OnDestroy();
  20. };