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 );
|
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.@]
|
* WsCall [webservices.@]
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
@ stub WsAbortChannel
|
@ stub WsAbortChannel
|
||||||
@ stub WsAbortListener
|
@ stub WsAbortListener
|
||||||
@ stub WsAbortServiceHost
|
@ stub WsAbortServiceHost
|
||||||
@ stub WsAbortServiceProxy
|
@ stdcall WsAbortServiceProxy(ptr ptr)
|
||||||
@ stub WsAcceptChannel
|
@ stub WsAcceptChannel
|
||||||
@ stdcall WsAddCustomHeader(ptr ptr long ptr long long ptr)
|
@ stdcall WsAddCustomHeader(ptr ptr long ptr long long ptr)
|
||||||
@ stub WsAddErrorString
|
@ stub WsAddErrorString
|
||||||
|
|
|
@ -1366,6 +1366,7 @@ struct _WS_PROXY_MESSAGE_CALLBACK_CONTEXT
|
||||||
void *state;
|
void *state;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
HRESULT WINAPI WsAbortServiceProxy(WS_SERVICE_PROXY*, WS_ERROR*);
|
||||||
HRESULT WINAPI WsAddCustomHeader(WS_MESSAGE*, const WS_ELEMENT_DESCRIPTION*, WS_WRITE_OPTION,
|
HRESULT WINAPI WsAddCustomHeader(WS_MESSAGE*, const WS_ELEMENT_DESCRIPTION*, WS_WRITE_OPTION,
|
||||||
const void*, ULONG, ULONG, WS_ERROR*);
|
const void*, ULONG, ULONG, WS_ERROR*);
|
||||||
HRESULT WINAPI WsAddMappedHeader(WS_MESSAGE*, const WS_XML_STRING*, WS_TYPE, WS_WRITE_OPTION,
|
HRESULT WINAPI WsAddMappedHeader(WS_MESSAGE*, const WS_XML_STRING*, WS_TYPE, WS_WRITE_OPTION,
|
||||||
|
|
Loading…
Reference in New Issue