webservices: Implement WsOpenServiceProxy and WsCloseServiceProxy.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
be767562ae
commit
bd56d1a0f1
|
@ -205,3 +205,32 @@ HRESULT WINAPI WsGetServiceProxyProperty( WS_SERVICE_PROXY *handle, WS_PROXY_PRO
|
|||
|
||||
return prop_get( proxy->prop, proxy->prop_count, id, buf, size );
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* WsOpenServiceProxy [webservices.@]
|
||||
*/
|
||||
HRESULT WINAPI WsOpenServiceProxy( WS_SERVICE_PROXY *handle, const WS_ENDPOINT_ADDRESS *endpoint,
|
||||
const WS_ASYNC_CONTEXT *ctx, WS_ERROR *error )
|
||||
{
|
||||
struct proxy *proxy = (struct proxy *)handle;
|
||||
|
||||
TRACE( "%p %p %p %p\n", handle, endpoint, ctx, error );
|
||||
if (error) FIXME( "ignoring error parameter\n" );
|
||||
if (ctx) FIXME( "ignoring ctx parameter\n" );
|
||||
|
||||
return open_channel( proxy->channel, endpoint );
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* WsCloseServiceProxy [webservices.@]
|
||||
*/
|
||||
HRESULT WINAPI WsCloseServiceProxy( WS_SERVICE_PROXY *handle, const WS_ASYNC_CONTEXT *ctx, WS_ERROR *error )
|
||||
{
|
||||
struct proxy *proxy = (struct proxy *)handle;
|
||||
|
||||
TRACE( "%p %p %p\n", handle, ctx, error );
|
||||
if (error) FIXME( "ignoring error parameter\n" );
|
||||
if (ctx) FIXME( "ignoring ctx parameter\n" );
|
||||
|
||||
return close_channel( proxy->channel );
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
@ stdcall WsCloseChannel(ptr ptr ptr)
|
||||
@ stub WsCloseListener
|
||||
@ stub WsCloseServiceHost
|
||||
@ stub WsCloseServiceProxy
|
||||
@ stdcall WsCloseServiceProxy(ptr ptr ptr)
|
||||
@ stub WsCombineUrl
|
||||
@ stub WsCopyError
|
||||
@ stub WsCopyNode
|
||||
|
@ -98,7 +98,7 @@
|
|||
@ stdcall WsOpenChannel(ptr ptr ptr ptr)
|
||||
@ stub WsOpenListener
|
||||
@ stub WsOpenServiceHost
|
||||
@ stub WsOpenServiceProxy
|
||||
@ stdcall WsOpenServiceProxy(ptr ptr ptr ptr)
|
||||
@ stub WsPullBytes
|
||||
@ stub WsPushBytes
|
||||
@ stub WsReadArray
|
||||
|
|
Loading…
Reference in New Issue