GetClusterResourceTypeKey

The GetClusterResourceTypeKey function opens the root of the cluster database subtree for a resource type.

HKEY WINAPI GetClusterResourceTypeKey(
  HCLUSTER hCluster,     
  LPCWSTR lpszTypeName,  
  REGSAM samDesired      
);
 

Parameters

hCluster
[in] Handle to a cluster.
lpszTypeName
[in] Pointer to the name of a resource type.
samDesired
[in] Access mask that describes the desired security access for the opened key.

Return Values

NULL
The operation was unsuccessful. For more detailed information about the error, see the Win32 function GetLastError.

If the operation was successful, GetClusterResourceTypeKey returns a registry key handle for the resource type.

Remarks

The GetClusterResourceTypeKey function returns a handle to a cluster database key representing the subtree root for the resource type pointed to by lpszTypeName in the cluster identified by hCluster. Callers should call ClusterRegCloseKey to close the key handle retrieved by GetClusterResourceTypeKey when they are done with it.

QuickInfo

  Version: Use Windows NT Server Enterprise Edition 4.0.
  Windows CE: Unsupported.
  Header: Declared in clusapi.h.