Suppress SetNamedPipeHandleState fixme for now

Mike Hearn mike at navi.cx
Sat Jun 4 11:45:36 CDT 2005


Mike Hearn <mh at codeweavers.com>
Suppress SetNamedPipeHandleState fixme for now

Index: dlls/kernel/sync.c
===================================================================
RCS file: /home/wine/wine/dlls/kernel/sync.c,v
retrieving revision 1.78
diff -u -p -d -u -r1.78 sync.c
--- dlls/kernel/sync.c	24 Apr 2005 17:36:34 -0000	1.78
+++ dlls/kernel/sync.c	4 Jun 2005 16:43:44 -0000
@@ -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;
 }
 



More information about the wine-patches mailing list