16 Sep
2019
16 Sep
'19
9:20 a.m.
Dmitry Timoshkov <dmitry(a)baikal.ru> writes:
+static int rpcrt4_conn_np_wait_for_incoming_data(RpcConnection *conn) { - /* FIXME: implement when named pipe writes use overlapped I/O */ - return -1; + RpcConnection_np *connection = (RpcConnection_np *)conn; + HANDLE event; + + event = get_np_event(connection); + if (!event) return -1; + + WaitForSingleObject(event, INFINITE); + release_np_event(connection, event);
How is that event going to be set? -- Alexandre Julliard julliard(a)winehq.org