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.

53 lines
1013 B

  1. //
  2. // MODULE: APGTSFST.H
  3. //
  4. // PURPOSE: Creates a list of available trouble shooters.
  5. //
  6. // PROJECT: Generic Troubleshooter DLL for Microsoft AnswerPoint
  7. //
  8. // COMPANY: Saltmine Creative, Inc. (206)-633-4743 [email protected]
  9. //
  10. // AUTHOR: Richard Meadows
  11. //
  12. // ORIGINAL DATE: 6/4/96
  13. //
  14. // NOTES:
  15. // 1. Based on Print Troubleshooter DLL.
  16. //
  17. // Version Date By Comments
  18. //--------------------------------------------------------------------
  19. // V0.1 - RM Original
  20. // V0.3 3/24/98 JM Local Version for NT5
  21. //
  22. #ifndef __APGTSFST_H_
  23. #define __APGTSFST_H_ 1
  24. class CFirstPageException : public CBasicException
  25. {
  26. public:
  27. CFirstPageException(){m_strError=_T("");};
  28. ~CFirstPageException(){};
  29. CString m_strError;
  30. };
  31. class CFirstPage
  32. {
  33. public:
  34. CFirstPage();
  35. ~CFirstPage();
  36. void RenderFirst(CString &strOut, CString &strTS);
  37. CString m_strFpResourcePath;
  38. protected:
  39. HKEY m_hKey; // The key to the list of trouble shooters.
  40. BOOL m_bKeyOpen;
  41. void OpenRegKeys();
  42. void CloseRegKeys();
  43. };
  44. #endif