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
5dd5c225
Commit
5dd5c225
authored
Dec 05, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clusapi: Add stubs for OpenCluster and CloseCluster.
parent
77cf8034
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
2 deletions
+27
-2
clusapi.c
dlls/clusapi/clusapi.c
+21
-0
clusapi.spec
dlls/clusapi/clusapi.spec
+2
-2
clusapi.h
include/clusapi.h
+4
-0
No files found.
dlls/clusapi/clusapi.c
View file @
5dd5c225
...
...
@@ -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.@)
...
...
dlls/clusapi/clusapi.spec
View file @
5dd5c225
...
...
@@ -3,7 +3,7 @@
@ stub BackupClusterDatabase
@ stub CanResourceBeDependent
@ stub ChangeClusterResourceGroup
@ st
ub CloseCluster
@ st
dcall CloseCluster(ptr)
@ stub CloseClusterGroup
@ stub CloseClusterNetInterface
@ stub CloseClusterNetwork
...
...
@@ -93,7 +93,7 @@
@ stub OfflineClusterResource
@ stub OnlineClusterGroup
@ stub OnlineClusterResource
@ st
ub OpenCluster
@ st
dcall OpenCluster(wstr)
@ stub OpenClusterGroup
@ stub OpenClusterNetInterface
@ stub OpenClusterNetwork
...
...
include/clusapi.h
View file @
5dd5c225
...
...
@@ -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
}
...
...
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