webservices: Add a stub implementation of WsAbortServiceProxy.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Hans Leidekker 2016-08-31 14:35:30 +02:00 committed by Alexandre Julliard
parent 1acc1b9ee4
commit 6f048bbf0d
3 changed files with 11 additions and 1 deletions

View File

@ -235,6 +235,15 @@ HRESULT WINAPI WsCloseServiceProxy( WS_SERVICE_PROXY *handle, const WS_ASYNC_CON
return close_channel( proxy->channel );
}
/**************************************************************************
* WsAbortServiceProxy [webservices.@]
*/
HRESULT WINAPI WsAbortServiceProxy( WS_SERVICE_PROXY *handle, WS_ERROR *error )
{
FIXME( "%p %p\n", handle, error );
return E_NOTIMPL;
}
/**************************************************************************
* WsCall [webservices.@]
*/

View File

@ -3,7 +3,7 @@
@ stub WsAbortChannel
@ stub WsAbortListener
@ stub WsAbortServiceHost
@ stub WsAbortServiceProxy
@ stdcall WsAbortServiceProxy(ptr ptr)
@ stub WsAcceptChannel
@ stdcall WsAddCustomHeader(ptr ptr long ptr long long ptr)
@ stub WsAddErrorString

View File

@ -1366,6 +1366,7 @@ struct _WS_PROXY_MESSAGE_CALLBACK_CONTEXT
void *state;
};
HRESULT WINAPI WsAbortServiceProxy(WS_SERVICE_PROXY*, WS_ERROR*);
HRESULT WINAPI WsAddCustomHeader(WS_MESSAGE*, const WS_ELEMENT_DESCRIPTION*, WS_WRITE_OPTION,
const void*, ULONG, ULONG, WS_ERROR*);
HRESULT WINAPI WsAddMappedHeader(WS_MESSAGE*, const WS_XML_STRING*, WS_TYPE, WS_WRITE_OPTION,