Suppress the noisy SetNamedPipeHandleState fixme.

oldstable
Mike Hearn 2005-06-05 18:03:38 +00:00 committed by Alexandre Julliard
parent 4c6ad7ffc5
commit 0aab090838
1 changed files with 4 additions and 2 deletions

View File

@ -1479,8 +1479,10 @@ BOOL WINAPI SetNamedPipeHandleState(
HANDLE hNamedPipe, LPDWORD lpMode, LPDWORD lpMaxCollectionCount,
LPDWORD lpCollectDataTimeout)
{
FIXME("%p %p %p %p\n",
hNamedPipe, lpMode, lpMaxCollectionCount, lpCollectDataTimeout);
/* should be a fixme, but this function is called a lot by the RPC
* runtime, and it slows down InstallShield a fair bit. */
WARN("stub: %p %p/%ld %p %p\n",
hNamedPipe, lpMode, lpMode ? *lpMode : 0, lpMaxCollectionCount, lpCollectDataTimeout);
return FALSE;
}