Commit b5483389 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

rpcrt4: Implement cancel_call for named pipes.

parent 372c9e0d
......@@ -447,9 +447,10 @@ static int rpcrt4_conn_np_close(RpcConnection *conn)
return 0;
}
static void rpcrt4_conn_np_cancel_call(RpcConnection *Connection)
static void rpcrt4_conn_np_cancel_call(RpcConnection *conn)
{
/* FIXME: implement when named pipe writes use overlapped I/O */
RpcConnection_np *connection = (RpcConnection_np *)conn;
CancelIoEx(connection->pipe, NULL);
}
static int rpcrt4_conn_np_wait_for_incoming_data(RpcConnection *Connection)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment