Commit a429ce00 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

clusapi: Don't print an out parameter.

parent 3af523fd
......@@ -97,7 +97,7 @@ DWORD WINAPI ClusterCloseEnum(HCLUSENUM hEnum)
*/
DWORD WINAPI ClusterEnum(HCLUSENUM hEnum, DWORD dwIndex, LPDWORD lpdwType, LPWSTR lpszName, LPDWORD lpcchName)
{
FIXME("(%p, %u, %u, %s, %u) stub!\n", hEnum, dwIndex, *lpdwType, debugstr_w(lpszName), *lpcchName);
FIXME("(%p, %u, %u, %p, %u) stub!\n", hEnum, dwIndex, *lpdwType, lpszName, *lpcchName);
return ERROR_NO_MORE_ITEMS;
}
......
......@@ -12,7 +12,7 @@
@ stub CloseClusterResource
@ stdcall ClusterCloseEnum(ptr)
@ stub ClusterControl
@ stdcall ClusterEnum(ptr long ptr wstr ptr)
@ stdcall ClusterEnum(ptr long ptr ptr ptr)
@ stub ClusterGetEnumCount
@ stub ClusterGroupCloseEnum
@ stub ClusterGroupControl
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment