Commit 7ff383e5 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

webservices: Add a stub implementation of WsCall.

parent 12a00ea3
...@@ -234,3 +234,14 @@ HRESULT WINAPI WsCloseServiceProxy( WS_SERVICE_PROXY *handle, const WS_ASYNC_CON ...@@ -234,3 +234,14 @@ HRESULT WINAPI WsCloseServiceProxy( WS_SERVICE_PROXY *handle, const WS_ASYNC_CON
return close_channel( proxy->channel ); return close_channel( proxy->channel );
} }
/**************************************************************************
* WsCall [webservices.@]
*/
HRESULT WINAPI WsCall( WS_SERVICE_PROXY *handle, const WS_OPERATION_DESCRIPTION *desc, const void **args,
WS_HEAP *heap, const WS_CALL_PROPERTY *properties, const ULONG count,
const WS_ASYNC_CONTEXT *ctx, WS_ERROR *error )
{
FIXME( "%p %p %p %p %p %u %p %p\n", handle, desc, args, heap, properties, count, ctx, error );
return E_NOTIMPL;
}
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
@ stub WsAddressMessage @ stub WsAddressMessage
@ stdcall WsAlloc(ptr long ptr ptr) @ stdcall WsAlloc(ptr long ptr ptr)
@ stub WsAsyncExecute @ stub WsAsyncExecute
@ stub WsCall @ stdcall WsCall(ptr ptr ptr ptr ptr long ptr ptr)
@ stub WsCheckMustUnderstandHeaders @ stub WsCheckMustUnderstandHeaders
@ stdcall WsCloseChannel(ptr ptr ptr) @ stdcall WsCloseChannel(ptr ptr ptr)
@ stub WsCloseListener @ stub WsCloseListener
......
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