Commit 6f048bbf authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

webservices: Add a stub implementation of WsAbortServiceProxy.

parent 1acc1b9e
......@@ -236,6 +236,15 @@ HRESULT WINAPI WsCloseServiceProxy( WS_SERVICE_PROXY *handle, const WS_ASYNC_CON
}
/**************************************************************************
* WsAbortServiceProxy [webservices.@]
*/
HRESULT WINAPI WsAbortServiceProxy( WS_SERVICE_PROXY *handle, WS_ERROR *error )
{
FIXME( "%p %p\n", handle, error );
return E_NOTIMPL;
}
/**************************************************************************
* WsCall [webservices.@]
*/
HRESULT WINAPI WsCall( WS_SERVICE_PROXY *handle, const WS_OPERATION_DESCRIPTION *desc, const void **args,
......
......@@ -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,
......
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