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.
 
 
 
 
 
 

109 lines
3.4 KiB

//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2000-2002 Microsoft Corporation
//
// Module Name:
// CTaskUpgradeNT4.h
//
// Description:
// This file contains the declaration of the class CTaskUpgradeNT4.
// This class represents the task of upgrading the cluster service on
// a node that had Windows 2000 installed on it.
//
// Implementation Files:
// CTaskUpgradeNT4.cpp
//
// Maintained By:
// David Potter (DavidP) 25-MAR-2002
// Vij Vasu (Vvasu) 26-JUL-2000
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
//////////////////////////////////////////////////////////////////////////////
// Include Files
//////////////////////////////////////////////////////////////////////////////
// For the base class
#include "CTaskUpgrade.h"
//////////////////////////////////////////////////////////////////////////////
// Forward Declarations
//////////////////////////////////////////////////////////////////////////////
class CClusOCMApp;
//////////////////////////////////////////////////////////////////////////////
//++
//
// class CTaskUpgradeNT4
//
// Description:
// This class represents the task of upgrading the cluster service on
// a node that had Windows 2000 installed on it.
//
//--
//////////////////////////////////////////////////////////////////////////////
class CTaskUpgradeNT4 : public CTaskUpgrade
{
public:
//////////////////////////////////////////////////////////////////////////
// Public constructors and destructors
//////////////////////////////////////////////////////////////////////////
// Constructor.
CTaskUpgradeNT4( const CClusOCMApp & rAppIn );
// Destructor
virtual ~CTaskUpgradeNT4( void );
//////////////////////////////////////////////////////////////////////////
// Message handlers
//////////////////////////////////////////////////////////////////////////
// Handler for the OC_QUEUE_FILE_OPS message.
virtual DWORD
DwOcQueueFileOps( HSPFILEQ hSetupFileQueueIn );
// Handler for the OC_COMPLETE_INSTALLATION message.
virtual DWORD
DwOcCompleteInstallation( void );
// Handler for the OC_CLEANUP message.
virtual DWORD
DwOcCleanup( void );
protected:
//////////////////////////////////////////////////////////////////////////
// Protected methods
//////////////////////////////////////////////////////////////////////////
// Map ids specified in the INF file to actual directories.
DWORD DwSetDirectoryIds( void );
private:
//////////////////////////////////////////////////////////////////////////
// Forbidden methods
//////////////////////////////////////////////////////////////////////////
//
// Copying an object of this class is not allowed.
//
// Private copy constructor.
CTaskUpgradeNT4( const CTaskUpgradeNT4 & );
// Private assignment operator.
const CTaskUpgradeNT4 & operator =( const CTaskUpgradeNT4 & );
//////////////////////////////////////////////////////////////////////////
// Private types
//////////////////////////////////////////////////////////////////////////
typedef CTaskUpgrade BaseClass;
}; //*** class CTaskUpgradeNT4