Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
bd56d1a0
Commit
bd56d1a0
authored
Apr 22, 2016
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 22, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
webservices: Implement WsOpenServiceProxy and WsCloseServiceProxy.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
be767562
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
2 deletions
+31
-2
proxy.c
dlls/webservices/proxy.c
+29
-0
webservices.spec
dlls/webservices/webservices.spec
+2
-2
No files found.
dlls/webservices/proxy.c
View file @
bd56d1a0
...
...
@@ -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
);
}
dlls/webservices/webservices.spec
View file @
bd56d1a0
...
...
@@ -16,7 +16,7 @@
@ stdcall WsCloseChannel(ptr ptr ptr)
@ stub WsCloseListener
@ stub WsCloseServiceHost
@ st
ub WsCloseServiceProxy
@ st
dcall WsCloseServiceProxy(ptr ptr ptr)
@ stub WsCombineUrl
@ stub WsCopyError
@ stub WsCopyNode
...
...
@@ -98,7 +98,7 @@
@ stdcall WsOpenChannel(ptr ptr ptr ptr)
@ stub WsOpenListener
@ stub WsOpenServiceHost
@ st
ub WsOpenServiceProxy
@ st
dcall WsOpenServiceProxy(ptr ptr ptr ptr)
@ stub WsPullBytes
@ stub WsPushBytes
@ stub WsReadArray
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment