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.
|
|
// Copyright (c) 1997-2001 Microsoft Corporation
//
// File: FileServerPage.h
//
// Synopsis: Declares the File Server page
// for the CYS Wizard
//
// History: 02/08/2001 JeffJon Created
#ifndef __CYS_FILESERVERPAGE_H
#define __CYS_FILESERVERPAGE_H
#include "CYSWizardPage.h"
class FileServerPage : public CYSWizardPage { public: // Constructor
FileServerPage();
// Destructor
virtual ~FileServerPage();
// Dialog overrides
virtual void OnInit();
// PropertyPage overrides
virtual bool OnSetActive();
virtual bool OnCommand( HWND windowFrom, unsigned controlIDFrom, unsigned code);
protected:
// CYSWizardPage overrides
virtual int Validate();
void SetControlState();
private:
void UpdateQuotaControls( unsigned controlIDFrom, unsigned editboxID);
// not defined: no copying allowed
FileServerPage(const FileServerPage&); const FileServerPage& operator=(const FileServerPage&);
};
#endif // __CYS_FILESERVERPAGE_H
|