clusapi: Corrected value in GetNodeClusterState.

This commit is contained in:
Alistair Leslie-Hughes 2007-11-12 21:01:19 +11:00 committed by Alexandre Julliard
parent 147600b671
commit 0fade3c139
1 changed files with 11 additions and 2 deletions

View File

@ -30,12 +30,21 @@ WINE_DEFAULT_DEBUG_CHANNEL(clusapi);
/***********************************************************************
* GetNodeClusterState (CLUSAPI.@)
*
* PARAMS
* lpszNodeName [I] Optional Pointer to a NULL terminated unicode string
* pdwClusterState [O] Current state of the cluster
* 0x00 - Cluster not installed.
* 0x01 - Cluster not configured.
* 0x03 - Cluster not running.
* 0x13 - Cluster is running.
*/
DWORD WINAPI GetNodeClusterState(LPCWSTR lpszNodeName, LPDWORD pdwClusterState)
{
FIXME("(%s,%p) stub!\n",debugstr_w(lpszNodeName),pdwClusterState);
FIXME("(%s,%p,%u) stub!\n",debugstr_w(lpszNodeName),pdwClusterState, *pdwClusterState);
return 0;
*pdwClusterState = 0;
return ERROR_SUCCESS;
}