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.

52 lines
1.1 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1997.
  5. //
  6. // File: cred.hxx
  7. //
  8. // Contents: Task schedule onestop credentials property page.
  9. //
  10. // Classes: CCredentialsPage
  11. //
  12. // History: 05-22-1998 SusiA
  13. //
  14. //---------------------------------------------------------------------------
  15. #ifndef __CRED_HXX_
  16. #define __CRED_HXX_
  17. //+--------------------------------------------------------------------------
  18. //
  19. // Class: CCredentialsPage
  20. //
  21. // History: 05-22-1998 SusiA
  22. //
  23. //---------------------------------------------------------------------------
  24. class CCredentialsPage: public CWizPage
  25. {
  26. public:
  27. //
  28. // Object creation/destruction
  29. //
  30. CCredentialsPage(
  31. HINSTANCE hinst,
  32. BOOL *pfSaved,
  33. ISyncSchedule *pISyncSched,
  34. HPROPSHEETPAGE *phPSP);
  35. BOOL Initialize(HWND hwnd);
  36. HRESULT CommitChanges();
  37. void SetDirty();
  38. BOOL ShowUserName();
  39. BOOL SetEnabled(BOOL fEnabled);
  40. private:
  41. BOOL *m_pfSaved;
  42. BOOL m_Initialized;
  43. BOOL m_fTaskAccountChange;
  44. };
  45. #endif // __CRED_HXX_