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
4.0 KiB

//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2000 Microsoft Corporation
//
// Module Name:
// CommonDefs.h
//
// Description:
// This file contains a few definitions common to many classes and files.
//
// Implementation Files:
// None
//
// Maintained By:
// Vij Vasu (Vvasu) 12-MAR-2000
//
//////////////////////////////////////////////////////////////////////////////
// Make sure that this file is included only once per compile path.
#pragma once
//////////////////////////////////////////////////////////////////////////
// Include Files
//////////////////////////////////////////////////////////////////////////
// For some basic types
#include <windows.h>
// For smart classes
#include "SmartClasses.h"
// For DIRID_USER
#include <setupapi.h>
//////////////////////////////////////////////////////////////////////////
// Macros definitions
//////////////////////////////////////////////////////////////////////////
// The INF section for the clean install of cluster binaries.
#define INF_SECTION_CLEAN_INSTALL L"Clean_Install"
// The INF section for cleaning upon an error during a clean install.
#define INF_SECTION_CLEAN_INSTALL_CLEANUP L"Clean_Install_Cleanup"
// The INF section for the upgrade of cluster binaries from Windows Server 2003 when
// the node is already part of a cluster.
#define INF_SECTION_WHISTLER_UPGRADE L"WindowsDotNet_Upgrade"
// The INF section for cleaning upon an error during an upgrade from Windows
// Server 2003 when the node is already part of a cluster.
#define INF_SECTION_WHISTLER_UPGRADE_CLEANUP L"WindowsDotNet_Upgrade_Cleanup"
// The INF section for the upgrade of cluster binaries from Windows Server 2003 when
// the node is not part of a cluster.
#define INF_SECTION_WHISTLER_UPGRADE_UNCLUSTERED_NODE L"WindowsDotNet_Upgrade_Unclustered"
// The INF section for cleaning upon an error during an upgrade from Windows
// Server 2003 when the node is not part of a cluster.
#define INF_SECTION_WHISTLER_UPGRADE_UNCLUSTERED_NODE_CLEANUP L"WindowsDotNet_Upgrade_Unclustered_Cleanup"
// The INF section for the upgrade of cluster binaries from Windows 2000 when
// the node is already part of a cluster.
#define INF_SECTION_WIN2K_UPGRADE L"Windows2000_Upgrade"
// The INF section for cleaning upon an error during an upgrade from Windows
// 2000 when the node is already partof a cluster.
#define INF_SECTION_WIN2K_UPGRADE_CLEANUP L"Windows2000_Upgrade_Cleanup"
// The INF section for the upgrade of cluster binaries from Windows 2000 when
// the node is not part of a cluster.
#define INF_SECTION_WIN2K_UPGRADE_UNCLUSTERED_NODE L"Windows2000_Upgrade_Unclustered"
// The INF section for cleaning upon an error during an upgrade from Windows
// 2000 when the node is not part of a cluster.
#define INF_SECTION_WIN2K_UPGRADE_UNCLUSTERED_NODE_CLEANUP L"Windows2000_Upgrade_Unclustered_Cleanup"
// The INF section for the upgrade of cluster binaries from Windows NT 4.0.
#define INF_SECTION_NT4_UPGRADE L"NT4_Upgrade"
// The INF section for cleaning upon an error during an upgrade from Windows
// NT 4.0.
#define INF_SECTION_NT4_UPGRADE_CLEANUP L"NT4_Upgrade_Cleanup"
// Directory where the cluster files are intalled by default.
#define CLUSTER_DEFAULT_INSTALL_DIR L"%SystemRoot%\\Cluster"
// Directory id of the above directory.
#define CLUSTER_DEFAULT_INSTALL_DIRID ( DIRID_USER + 0 )
//////////////////////////////////////////////////////////////////////////
// Type definitions
//////////////////////////////////////////////////////////////////////////
//
// Smart classes
//
// Smart WCHAR array
typedef CSmartGenericPtr< CPtrTrait< WCHAR > > SmartSz;
// Smart registry handle
typedef CSmartResource< CHandleTrait< HKEY, LONG, RegCloseKey, NULL > > SmartRegistryKey;
// Smart service handle.
typedef CSmartResource< CHandleTrait< SC_HANDLE, BOOL, CloseServiceHandle > > SmartServiceHandle;