[Bug 17273] SetNamedPipeHandleState is a stub (FireFox+Flash, Win8/NET 4.x SDK/vcrun2012 installer)

wine-bugs at winehq.org wine-bugs at winehq.org
Sat May 3 00:55:28 CDT 2014


http://bugs.winehq.org/show_bug.cgi?id=17273

Akira Nakagawa <matyapiro31 at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |matyapiro31 at gmail.com

--- Comment #45 from Akira Nakagawa <matyapiro31 at gmail.com> ---

/***********************************************************************
 *           SetNamedPipeHandleState  (KERNEL32.@)
 */
BOOL WINAPI SetNamedPipeHandleState(
    HANDLE hNamedPipe, LPDWORD lpMode, LPDWORD lpMaxCollectionCount,
    LPDWORD 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/%d %p %p\n",
          hNamedPipe, lpMode, lpMode ? *lpMode : 0, lpMaxCollectionCount,
lpCollectDataTimeout);

    SERVER_START_REQ( create_named_pipe )
    {
        req->handle = wine_server_obj_handle( hNamedPipe );
        req->flags = //I'm not sure at all
    }
    SERVER_END_REQ;
    return FALSE;
}

lpMode value will change req->flags,but it is somehow difficult how for me,
see CreateNamedPipeW and NtCreateNamedPipeFile functions to what is changed.

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list