Platform SDK: Windows Clustering |
The CLUS_STARTING_PARAMS structure indicates whether a node's attempt to start the Cluster service represents an attempt to form or join a cluster, and whether the node has attempted to start this version of the Cluster service before. Resource DLLs receive the CLUS_STARTING_PARAMS structure with the CLUSCTL_RESOURCE_TYPE_STARTING_PHASE1 and CLUSCTL_RESOURCE_TYPE_STARTING_PHASE2 control codes.
typedef struct CLUS_STARTING_PARAMS { DWORD dwSize; BOOL bForm; BOOL bFirst; } CLUS_STARTING_PARAMS, * PCLUS_STARTING_PARAMS;
Value | Implications |
---|---|
TRUE | The node starting the Cluster service is attempting to form a cluster. No other nodes are currently active. |
FALSE | The node starting the Cluster service is attempting to join an existing cluster. At least one other node is currently active. |
Value | Implications |
---|---|
TRUE | The node is starting a version of the Cluster service for the first time. |
FALSE | The node has started this version of the Cluster service previously. |
The CLUS_STARTING_PARAMS structure allows resource DLLs to respond to the CLUSCTL_RESOURCE_TYPE_STARTING_PHASE1 and CLUSCTL_RESOURCE_TYPE_STARTING_PHASE2 control codes based on the circumstances of the start. For example, a DLL might perform special initialization steps when the cluster forms, and perform another set of operations in response to joins.
The following example illustrates an abbreviated implementation of ResourceTypeControl. For more information, see Implementing ResourceTypeControl.
const LPWSTR g_MY_RESOURCE_TYPE_NAME[] = { "MyType_0", "MyType_1", "MyType_2", "MyType_3" }; DWORD WINAPI MyDllResourceTypeControl( IN LPCWSTR ResourceTypeName, IN DWORD ControlCode, IN PVOID InBuffer, IN DWORD InBufferSize, OUT PVOID OutBuffer, IN DWORD OutBufferSize, OUT LPDWORD BytesReturned ) { DWORD status; PCLUS_STARTING_PARAMS pStart; switch ( ControlCode ) { case CLUSCTL_RESOURCE_TYPE_STARTING_PHASE1: if( lstrcmpi( ResourceTypeName, g_MY_RESOURCE_TYPE_NAME[2] ) == 0 ) { pStart = (PCLUS_STARTING_PARAMS) InBuffer; if( ( pStart->bForm == TRUE ) && ( pStart->bFirst == FALSE ) ) { // Hypothetical initialization code for resource type "MyType_2" // Fires only when the cluster forms, but not for first-time launches of the Cluster service. } } else { status = ERROR_INVALID_FUNCTION; } break; case CLUSCTL_RESOURCE_TYPE_STARTING_PHASE2: pStart = (PCLUS_STARTING_PARAMS) InBuffer; if( pStart->bFirst == TRUE ) { // Hypothetical verification code for all resource types supported by the DLL // Fires for first-time launches of the Cluster service } else { status = ERROR_INVALID_FUNCTION; } break; // case ( Other control codes ).... // ... // break; default: status = ERROR_INVALID_FUNCTION; break; } // end switch return( status ); } // MyDllResourceTypeControl
Version: Requires Windows 2000 Advanced Server; Windows 2000 Data Center.
Header: Declared in Clusapi.h.
CLUSCTL_RESOURCE_TYPE_STARTING_PHASE1, CLUSCTL_RESOURCE_TYPE_STARTING_PHASE2