http://bugs.winehq.org/show_bug.cgi?id=17273
Akira Nakagawa matyapiro31@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |matyapiro31@gmail.com
--- Comment #45 from Akira Nakagawa matyapiro31@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.