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.
 
 
 
 
 
 

60 lines
1.4 KiB

//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 1999-2000 Microsoft Corporation
//
// Module Name:
// Cluster.h
//
// Implementation File:
// Cluster.cpp
//
// Description:
// Definition of the CClusterEnum class.
//
// Author:
// Henry Wang (HenryWa) 24-AUG-1999
//
// Notes:
//
//////////////////////////////////////////////////////////////////////////////
#pragma once
//////////////////////////////////////////////////////////////////////////////
// Include Files
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// Forward Declarations
//////////////////////////////////////////////////////////////////////////////
class CClusterEnum;
//////////////////////////////////////////////////////////////////////////////
//++
//
// class CClusterEnum
//
// Description:
// Enumerate cluster objects.
//
//--
//////////////////////////////////////////////////////////////////////////////
class CClusterEnum
{
public:
CClusterEnum(
HCLUSTER hClusterIn,
DWORD dwEnumTypeIn
);
virtual ~CClusterEnum( void);
const LPCWSTR GetNext( void );
protected:
LPWSTR m_pwszName;
HCLUSENUM m_hEnum;
UINT m_Idx;
DWORD m_cchName;
DWORD m_dwType;
}; //*** class CClusterEnum