Leaked source code of windows server 2003
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
1.1 KiB

//+----------------------------------------------------------------------------
//
// Windows NT Secure Server Roles Security Configuration Wizard
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 2002
//
// File: ServiceSelPage.h
//
// History: 30-Oct-01 Yanggao created
//
//-----------------------------------------------------------------------------
#ifndef SERVICESELPAGE_H_INCLUDED
#define SERVICESELPAGE_H_INCLUDED
#include "page.h"
class ServiceEnabledPage : public Dialog
{
public:
ServiceEnabledPage();
protected:
virtual ~ServiceEnabledPage();
// Dialog overrides
virtual
bool
OnCommand(
HWND windowFrom,
unsigned controlIDFrom,
unsigned code);
virtual
bool
OnMessage(
UINT message,
WPARAM wparam,
LPARAM lparam);
virtual
void
OnInit();
private:
// not defined; no copying allowed
ServiceEnabledPage(const ServiceEnabledPage&);
const ServiceEnabledPage& operator=(const ServiceEnabledPage&);
};
#endif // SERVICESELPAGE_H_INCLUDED