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
939 B

  1. // Copyright (C) 2000 Microsoft Corporation
  2. //
  3. // Dlg to show the details of the Dynamic DNS registration diagnostic
  4. //
  5. // 5 Oct 2000 sburns
  6. #ifndef DYNAMICDNSDETAILSDIALOG_HPP_INCLUDED
  7. #define DYNAMICDNSDETAILSDIALOG_HPP_INCLUDED
  8. class DynamicDnsDetailsDialog : public Dialog
  9. {
  10. public:
  11. DynamicDnsDetailsDialog(
  12. const String& details,
  13. const String& helpTopicLink);
  14. virtual ~DynamicDnsDetailsDialog();
  15. protected:
  16. // Dialog overrides
  17. virtual
  18. bool
  19. OnCommand(
  20. HWND windowFrom,
  21. unsigned controlIDFrom,
  22. unsigned code);
  23. virtual
  24. void
  25. OnInit();
  26. private:
  27. String details;
  28. String helpTopicLink;
  29. // not defined: no copying allowed
  30. DynamicDnsDetailsDialog(const DynamicDnsDetailsDialog&);
  31. const DynamicDnsDetailsDialog& operator=(const DynamicDnsDetailsDialog&);
  32. };
  33. #endif // DYNAMICDNSDETAILSDIALOG_HPP_INCLUDED