#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "clusapi.h"
#include "wine/debug.h"
Go to the source code of this file.
|
| WINE_DEFAULT_DEBUG_CHANNEL (clusapi) |
|
DWORD WINAPI | GetClusterInformation (HCLUSTER hCluster, LPWSTR lpszClusterName, LPDWORD lpcchClusterName, LPCLUSTERVERSIONINFO lpClusterInfo) |
|
DWORD WINAPI | GetNodeClusterState (LPCWSTR lpszNodeName, LPDWORD pdwClusterState) |
|
HCLUSTER WINAPI | OpenCluster (LPCWSTR lpszClusterName) |
|
BOOL WINAPI | CloseCluster (HCLUSTER hCluster) |
|
HCLUSENUM WINAPI | ClusterOpenEnum (HCLUSTER hCluster, DWORD dwType) |
|
DWORD WINAPI | ClusterCloseEnum (HCLUSENUM hEnum) |
|
DWORD WINAPI | ClusterEnum (HCLUSENUM hEnum, DWORD dwIndex, LPDWORD lpdwType, LPWSTR lpszName, LPDWORD lpcchName) |
|
BOOL WINAPI | DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) |
|
◆ CloseCluster()
Definition at line 79 of file clusapi.c.
80{
81 FIXME(
"(%p) stub!\n", hCluster);
82
84}
◆ ClusterCloseEnum()
Definition at line 101 of file clusapi.c.
102{
103 FIXME(
"(%p) stub!\n", hEnum);
104
106}
◆ ClusterEnum()
Definition at line 112 of file clusapi.c.
113{
114 FIXME(
"(%p, %u, %p, %p, %u) stub!\n", hEnum, dwIndex, lpdwType, lpszName, *lpcchName);
115
117}
#define ERROR_NO_MORE_ITEMS
◆ ClusterOpenEnum()
Definition at line 90 of file clusapi.c.
91{
92 FIXME(
"(%p, %u) stub!\n", hCluster,dwType);
93
95}
struct _HCLUSENUM * HCLUSENUM
◆ DllMain()
Definition at line 123 of file clusapi.c.
124{
126 {
127#ifndef __REACTOS__
128 case DLL_WINE_PREATTACH:
130#endif
133 break;
134 }
136}
static DWORD const fdwReason
#define DLL_PROCESS_ATTACH
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
◆ GetClusterInformation()
Definition at line 34 of file clusapi.c.
36{
37 FIXME(
"(%p, %p, %p, %p) stub!\n", hCluster, lpszClusterName, lpcchClusterName, lpClusterInfo);
38
39 *lpcchClusterName = 0;
40
42}
◆ GetNodeClusterState()
Definition at line 55 of file clusapi.c.
56{
58
59 *pdwClusterState = 0;
60
62}
◆ OpenCluster()
Definition at line 68 of file clusapi.c.
69{
71
73}
struct _HCLUSTER * HCLUSTER
◆ WINE_DEFAULT_DEBUG_CHANNEL()
WINE_DEFAULT_DEBUG_CHANNEL |
( |
clusapi |
| ) |
|