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
6f048bbf
Commit
6f048bbf
authored
Aug 31, 2016
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 31, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
webservices: Add a stub implementation of WsAbortServiceProxy.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1acc1b9e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
proxy.c
dlls/webservices/proxy.c
+9
-0
webservices.spec
dlls/webservices/webservices.spec
+1
-1
webservices.h
include/webservices.h
+1
-0
No files found.
dlls/webservices/proxy.c
View file @
6f048bbf
...
...
@@ -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
,
...
...
dlls/webservices/webservices.spec
View file @
6f048bbf
...
...
@@ -3,7 +3,7 @@
@ stub WsAbortChannel
@ stub WsAbortListener
@ stub WsAbortServiceHost
@ st
ub WsAbortServiceProxy
@ st
dcall WsAbortServiceProxy(ptr ptr)
@ stub WsAcceptChannel
@ stdcall WsAddCustomHeader(ptr ptr long ptr long long ptr)
@ stub WsAddErrorString
...
...
include/webservices.h
View file @
6f048bbf
...
...
@@ -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
,
...
...
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