mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 07:37:02 +00:00
webservices: Stub WsAbortChannel().
Powerpoint 2016 calls this while loading some themes. Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
74b1426bba
commit
48b581befd
2 changed files with 10 additions and 1 deletions
|
@ -2138,3 +2138,12 @@ HRESULT channel_accept_udp( SOCKET socket, HANDLE wait, HANDLE cancel, WS_CHANNE
|
||||||
LeaveCriticalSection( &channel->cs );
|
LeaveCriticalSection( &channel->cs );
|
||||||
return hr;
|
return hr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**************************************************************************
|
||||||
|
* WsAbortChannel [webservices.@]
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI WsAbortChannel( WS_CHANNEL *handle, WS_ERROR *error )
|
||||||
|
{
|
||||||
|
FIXME( "%p %p: stub!\n", handle, error );
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@ stub WsAbandonCall
|
@ stub WsAbandonCall
|
||||||
@ stub WsAbandonMessage
|
@ stub WsAbandonMessage
|
||||||
@ stub WsAbortChannel
|
@ stdcall WsAbortChannel(ptr ptr)
|
||||||
@ stub WsAbortListener
|
@ stub WsAbortListener
|
||||||
@ stub WsAbortServiceHost
|
@ stub WsAbortServiceHost
|
||||||
@ stdcall WsAbortServiceProxy(ptr ptr)
|
@ stdcall WsAbortServiceProxy(ptr ptr)
|
||||||
|
|
Loading…
Reference in a new issue