00001 /****************************************************************************** 00002 00003 Header File: Profile Information Page.H 00004 00005 Defines the class used to display the profile information sheet. 00006 00007 Copyright (c) 1996 by Microsoft Corporation 00008 00009 A Pretty Penny Enterprises Production 00010 00011 Change History: 00012 00013 10-24-96 [email protected] (Pretty Penny Enterprises) began coding this 00014 00015 ******************************************************************************/ 00016 00017 #include "PropPage.H" 00018 #include "Profile.H" 00019 00020 // CProfileInformationPage class- this handles the Profile Information page(s) 00021 00022 class CProfileInformationPage: public CShellExtensionPage { 00023 00024 CString m_csProfile; 00025 CProfile * m_pcpTarget; 00026 00027 public: 00028 00029 CProfileInformationPage(HINSTANCE hiWhere, LPCTSTR lpstrTarget); 00030 ~CProfileInformationPage(); 00031 00032 virtual BOOL OnInit(); 00033 virtual BOOL OnDestroy(); 00034 };