Commit 5a30d679 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

query: Enable compilation with long types.

parent 13de3b2e
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = query.dll
IMPORTS = uuid
......
......@@ -57,7 +57,7 @@ HRESULT WINAPI LocateCatalogsA(CHAR const *pwszScope, ULONG iBm,
CHAR *pwszCat, ULONG *pcCat)
{
FIXME("%s %u %p %p %p %p\n", debugstr_a(pwszScope),
FIXME("%s %lu %p %p %p %p\n", debugstr_a(pwszScope),
iBm, pwszMachine, pcMachine, pwszCat, pcCat);
return CI_E_NOT_RUNNING;
}
......@@ -67,7 +67,7 @@ HRESULT WINAPI LocateCatalogsW(WCHAR const *pwszScope, ULONG iBm,
WCHAR *pwszCat, ULONG *pcCat)
{
FIXME("%s %u %p %p %p %p\n", debugstr_w(pwszScope),
FIXME("%s %lu %p %p %p %p\n", debugstr_w(pwszScope),
iBm, pwszMachine, pcMachine, pwszCat, pcCat);
return CI_E_NOT_RUNNING;
}
......
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