clusapi: Add stubs for OpenCluster and CloseCluster.

oldstable
Hans Leidekker 2008-12-05 23:42:51 +00:00 committed by Alexandre Julliard
parent 77cf8034e4
commit 5dd5c22506
3 changed files with 27 additions and 2 deletions

View File

@ -47,6 +47,27 @@ DWORD WINAPI GetNodeClusterState(LPCWSTR lpszNodeName, LPDWORD pdwClusterState)
return ERROR_SUCCESS;
}
/***********************************************************************
* OpenCluster (CLUSAPI.@)
*
*/
HCLUSTER WINAPI OpenCluster(LPCWSTR lpszClusterName)
{
FIXME("(%s) stub!\n", debugstr_w(lpszClusterName));
return (HCLUSTER)0xdeadbeef;
}
/***********************************************************************
* CloseCluster (CLUSAPI.@)
*
*/
BOOL WINAPI CloseCluster(HCLUSTER hCluster)
{
FIXME("(%p) stub!\n", hCluster);
return TRUE;
}
/***********************************************************************
* DllMain (CLUSAPI.@)

View File

@ -3,7 +3,7 @@
@ stub BackupClusterDatabase
@ stub CanResourceBeDependent
@ stub ChangeClusterResourceGroup
@ stub CloseCluster
@ stdcall CloseCluster(ptr)
@ stub CloseClusterGroup
@ stub CloseClusterNetInterface
@ stub CloseClusterNetwork
@ -93,7 +93,7 @@
@ stub OfflineClusterResource
@ stub OnlineClusterGroup
@ stub OnlineClusterResource
@ stub OpenCluster
@ stdcall OpenCluster(wstr)
@ stub OpenClusterGroup
@ stub OpenClusterNetInterface
@ stub OpenClusterNetwork

View File

@ -23,7 +23,11 @@
extern "C" {
#endif
typedef struct _HCLUSTER *HCLUSTER;
BOOL WINAPI CloseCluster(HCLUSTER hCluster);
DWORD WINAPI GetNodeClusterState(LPCWSTR lpszNodeName, LPDWORD pdwClusterState);
HCLUSTER WINAPI OpenCluster(LPCWSTR lpszClusterName);
#ifdef __cplusplus
}