Commit 67d35e03 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

qwave: Enable compilation with long types.

parent 5a30d679
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = qwave.dll
IMPORTLIB = qwave
......
......@@ -39,7 +39,7 @@ BOOL WINAPI QOSCreateHandle(PQOS_VERSION version, PHANDLE handle)
BOOL WINAPI QOSAddSocketToFlow(HANDLE handle, SOCKET socket, PSOCKADDR addr,
QOS_TRAFFIC_TYPE traffictype, DWORD flags, PQOS_FLOWID flowid)
{
FIXME("%p, %lx, %p, %d, 0x%08x, %p stub!\n", handle, socket, addr, traffictype, flags, flowid);
FIXME("%p, %Ix, %p, %d, 0x%08lx, %p stub!\n", handle, socket, addr, traffictype, flags, flowid);
SetLastError(ERROR_NOT_SUPPORTED);
return FALSE;
}
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