34 lines
838 B
C
34 lines
838 B
C
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright © 1998 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
// MSClusDisp.h
|
|
//
|
|
// Abstract:
|
|
// Definition of the MSClus DISPIDs
|
|
//
|
|
// Implementation File:
|
|
// None.
|
|
//
|
|
// Author:
|
|
// Galen Barbee (galenb) 02-Oct-1998
|
|
//
|
|
// Revision History:
|
|
//
|
|
// Notes:
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _MSCLUSDISP_H_
|
|
|
|
#define DISPID_CLUSOBJ_NAME ( ( 0x40 << 24 ) | ( 1 << 16 ) | 1 )
|
|
#define DISPID_CLUSTER_NAME ( ( 0x40 << 24 ) | ( 2 << 16 ) | 1 )
|
|
#define DISPID_CLUSNETWORK_NAME ( ( 0x40 << 24 ) | ( 2 << 16 ) | 1 )
|
|
#define DISPID_CLUSRESGROUP_NAME ( ( 0x40 << 24 ) | ( 2 << 16 ) | 1 )
|
|
#define DISPID_CLUSRESOURCE_NAME ( ( 0x40 << 24 ) | ( 2 << 16 ) | 1 )
|
|
|
|
#define _MSCLUSDISP_H_
|
|
|
|
#endif // _MSCLUSDISP_H_
|