webservices: Add a stub implementation of WsAbortServiceProxy.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
1acc1b9ee4
commit
6f048bbf0d
|
@ -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.@]
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue