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.

46 lines
924 B

  1. //
  2. // MODULE: BackupInfo.cpp
  3. //
  4. // PURPOSE: Contains infomation that is used when the previous button is selected.
  5. //
  6. // PROJECT: Generic Troubleshooter DLL for Microsoft AnswerPoint
  7. //
  8. // COMPANY: Saltmine Creative, Inc. (206)-284-7511 [email protected]
  9. //
  10. // AUTHOR: Richard Meadows
  11. //
  12. // ORIGINAL DATE: 9/5/97
  13. //
  14. // NOTES:
  15. // 1.
  16. //
  17. // Version Date By Comments
  18. //--------------------------------------------------------------------
  19. // V0.2 6/4/97 RM Local Version for Memphis
  20. // V0.3 3/24/98 JM Local Version for NT5
  21. //
  22. #ifndef __BACKUPINFO_H_
  23. #define __BACKUPINFO_H_ 1
  24. class CBackupInfo
  25. {
  26. public:
  27. enum { INVALID_BNTS_STATE = 32000 };
  28. public:
  29. CBackupInfo();
  30. bool Check(int State);
  31. void SetState(int Node, int State);
  32. bool InReverse() {return m_bBackingUp;};
  33. void Clear();
  34. protected:
  35. bool m_bBackingUp;
  36. bool m_bProblemPage;
  37. int m_State;
  38. };
  39. #endif