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.
62 lines
935 B
62 lines
935 B
// Copyright (C) 1997-2000 Microsoft Corporation
|
|
//
|
|
// install replica from media page
|
|
//
|
|
// 7 Feb 2000 sburns
|
|
|
|
|
|
|
|
#ifndef REPLICATEFROMMEDIAPAGE_HPP_INCLUDED
|
|
#define REPLICATEFROMMEDIAPAGE_HPP_INCLUDED
|
|
|
|
|
|
|
|
class ReplicateFromMediaPage : public DCPromoWizardPage
|
|
{
|
|
public:
|
|
|
|
ReplicateFromMediaPage();
|
|
|
|
protected:
|
|
|
|
virtual ~ReplicateFromMediaPage();
|
|
|
|
// Dialog overrides
|
|
|
|
virtual
|
|
bool
|
|
OnCommand(
|
|
HWND windowFrom,
|
|
unsigned controlIDFrom,
|
|
unsigned code);
|
|
|
|
virtual
|
|
void
|
|
OnInit();
|
|
|
|
// PropertyPage overrides
|
|
|
|
virtual
|
|
bool
|
|
OnSetActive();
|
|
|
|
// DCPromoWizardPage overrides
|
|
|
|
virtual
|
|
int
|
|
Validate();
|
|
|
|
private:
|
|
|
|
void
|
|
Enable();
|
|
|
|
// not defined; no copying allowed
|
|
|
|
ReplicateFromMediaPage(const ReplicateFromMediaPage&);
|
|
const ReplicateFromMediaPage& operator=(const ReplicateFromMediaPage&);
|
|
};
|
|
|
|
|
|
|
|
#endif // REPLICATEFROMMEDIAPAGE_HPP_INCLUDED
|