From cdd37d19ea49ee9f2d9f6d219d228dc2284b5f8c Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Thu, 26 Apr 2007 11:32:13 +0000 Subject: [PATCH] - add a minimal clusapi.h. part 2 of clusapi - this header will need a lot more work. svn path=/trunk/; revision=26514 --- reactos/include/psdk/clusapi.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 reactos/include/psdk/clusapi.h diff --git a/reactos/include/psdk/clusapi.h b/reactos/include/psdk/clusapi.h new file mode 100644 index 00000000000..6f07409deb1 --- /dev/null +++ b/reactos/include/psdk/clusapi.h @@ -0,0 +1,19 @@ + +#ifndef _CLUSAPI_H +#define _CLUSAPI_H + +#ifdef __cplusplus +extern "C" { +#endif + +DWORD +WINAPI +GetNodeClusterState( + IN LPCWSTR lpszNodeName, + OUT DWORD *pdwClusterState + ); + +#ifdef __cplusplus +} +#endif +#endif // _CLUSAPI_H