mirror of https://github.com/tongzx/nt5src
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
53 lines
939 B
// Copyright (C) 2000 Microsoft Corporation
|
|
//
|
|
// Dlg to show the details of the Dynamic DNS registration diagnostic
|
|
//
|
|
// 5 Oct 2000 sburns
|
|
|
|
|
|
|
|
#ifndef DYNAMICDNSDETAILSDIALOG_HPP_INCLUDED
|
|
#define DYNAMICDNSDETAILSDIALOG_HPP_INCLUDED
|
|
|
|
|
|
|
|
class DynamicDnsDetailsDialog : public Dialog
|
|
{
|
|
public:
|
|
|
|
DynamicDnsDetailsDialog(
|
|
const String& details,
|
|
const String& helpTopicLink);
|
|
|
|
virtual ~DynamicDnsDetailsDialog();
|
|
|
|
protected:
|
|
|
|
// Dialog overrides
|
|
|
|
virtual
|
|
bool
|
|
OnCommand(
|
|
HWND windowFrom,
|
|
unsigned controlIDFrom,
|
|
unsigned code);
|
|
|
|
virtual
|
|
void
|
|
OnInit();
|
|
|
|
private:
|
|
|
|
String details;
|
|
String helpTopicLink;
|
|
|
|
// not defined: no copying allowed
|
|
|
|
DynamicDnsDetailsDialog(const DynamicDnsDetailsDialog&);
|
|
const DynamicDnsDetailsDialog& operator=(const DynamicDnsDetailsDialog&);
|
|
};
|
|
|
|
|
|
|
|
#endif // DYNAMICDNSDETAILSDIALOG_HPP_INCLUDED
|
|
|