Commit 8a3bc321 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

clusapi: Enable compilation with long types.

parent 5e441786
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = clusapi.dll
IMPORTLIB = clusapi
......
......@@ -89,7 +89,7 @@ BOOL WINAPI CloseCluster(HCLUSTER hCluster)
*/
HCLUSENUM WINAPI ClusterOpenEnum(HCLUSTER hCluster, DWORD dwType)
{
FIXME("(%p, %u) stub!\n", hCluster,dwType);
FIXME("(%p, %lu) stub!\n", hCluster,dwType);
return (HCLUSENUM)0xdeadbeef;
}
......@@ -111,7 +111,7 @@ DWORD WINAPI ClusterCloseEnum(HCLUSENUM hEnum)
*/
DWORD WINAPI ClusterEnum(HCLUSENUM hEnum, DWORD dwIndex, LPDWORD lpdwType, LPWSTR lpszName, LPDWORD lpcchName)
{
FIXME("(%p, %u, %p, %p, %u) stub!\n", hEnum, dwIndex, lpdwType, lpszName, *lpcchName);
FIXME("(%p, %lu, %p, %p, %lu) stub!\n", hEnum, dwIndex, lpdwType, lpszName, *lpcchName);
return ERROR_NO_MORE_ITEMS;
}
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