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.
 
 
 
 
 
 

55 lines
738 B

// Copyright (C) 1997 Microsoft Corporation
//
// replica or member server page
//
// 12-16-97 sburns
#ifndef REPLMEM_HPP_INCLUDED
#define REPLMEM_HPP_INCLUDED
#include "page.hpp"
class ReplicaOrMemberPage : public DCPromoWizardPage
{
public:
ReplicaOrMemberPage();
protected:
virtual ~ReplicaOrMemberPage();
// Dialog overrides
virtual
void
OnInit();
// PropertyPage overrides
virtual
bool
OnSetActive();
// DCPromoWizardPage overrides
virtual
int
Validate();
private:
// not defined; no copying allowed
ReplicaOrMemberPage(const ReplicaOrMemberPage&);
const ReplicaOrMemberPage& operator=(const ReplicaOrMemberPage&);
};
#endif // REPLMEM_HPP_INCLUDED