Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c6acd7a4
Commit
c6acd7a4
authored
May 24, 2013
by
André Hentschel
Committed by
Alexandre Julliard
May 24, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clusapi: Add stub for GetClusterInformation.
parent
f8971d03
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
1 deletion
+32
-1
clusapi.c
dlls/clusapi/clusapi.c
+14
-0
clusapi.spec
dlls/clusapi/clusapi.spec
+1
-1
clusapi.h
include/clusapi.h
+17
-0
No files found.
dlls/clusapi/clusapi.c
View file @
c6acd7a4
...
...
@@ -28,6 +28,20 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
clusapi
);
/***********************************************************************
* GetClusterInformation (CLUSAPI.@)
*
*/
DWORD
WINAPI
GetClusterInformation
(
HCLUSTER
hCluster
,
LPWSTR
lpszClusterName
,
LPDWORD
lpcchClusterName
,
LPCLUSTERVERSIONINFO
lpClusterInfo
)
{
FIXME
(
"(%p, %p, %p, %p) stub!
\n
"
,
hCluster
,
lpszClusterName
,
lpcchClusterName
,
lpClusterInfo
);
*
lpcchClusterName
=
0
;
return
ERROR_SUCCESS
;
}
/***********************************************************************
* GetNodeClusterState (CLUSAPI.@)
*
* PARAMS
...
...
dlls/clusapi/clusapi.spec
View file @
c6acd7a4
...
...
@@ -70,7 +70,7 @@
@ stub GetClusterFromResource
@ stub GetClusterGroupKey
@ stub GetClusterGroupState
@ st
ub GetClusterInformation
@ st
dcall GetClusterInformation(ptr ptr ptr ptr)
@ stub GetClusterKey
@ stub GetClusterNetInterface
@ stub GetClusterNetInterfaceKey
...
...
include/clusapi.h
View file @
c6acd7a4
...
...
@@ -26,7 +26,24 @@ extern "C" {
typedef
struct
_HCLUSTER
*
HCLUSTER
;
typedef
struct
_HCLUSENUM
*
HCLUSENUM
;
typedef
struct
_CLUSTERVERSIONINFO
{
DWORD
dwVersionInfoSize
;
WORD
MajorVersion
;
WORD
MinorVersion
;
WORD
BuildNumber
;
WCHAR
szVendorId
[
64
];
WCHAR
szCSDVersion
[
64
];
DWORD
dwClusterHighestVersion
;
DWORD
dwClusterLowestVersion
;
DWORD
dwFlags
;
DWORD
dwReserved
;
}
CLUSTERVERSIONINFO
,
*
LPCLUSTERVERSIONINFO
;
BOOL
WINAPI
CloseCluster
(
HCLUSTER
hCluster
);
DWORD
WINAPI
GetClusterInformation
(
HCLUSTER
hCluster
,
LPWSTR
lpszClusterName
,
LPDWORD
lpcchClusterName
,
LPCLUSTERVERSIONINFO
lpClusterInfo
);
DWORD
WINAPI
GetNodeClusterState
(
LPCWSTR
lpszNodeName
,
LPDWORD
pdwClusterState
);
HCLUSTER
WINAPI
OpenCluster
(
LPCWSTR
lpszClusterName
);
HCLUSENUM
WINAPI
ClusterOpenEnum
(
HCLUSTER
hCluster
,
DWORD
dwType
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment