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
9928202d
Commit
9928202d
authored
Jul 17, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Jul 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
webservices: Add missing const to url parameter of WsOpenListener.
parent
4e6dbf3b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
listener.c
dlls/webservices/listener.c
+2
-1
webservices.h
include/webservices.h
+1
-1
No files found.
dlls/webservices/listener.c
View file @
9928202d
...
...
@@ -448,7 +448,8 @@ static HRESULT open_listener( struct listener *listener, const WS_STRING *url )
/**************************************************************************
* WsOpenListener [webservices.@]
*/
HRESULT
WINAPI
WsOpenListener
(
WS_LISTENER
*
handle
,
WS_STRING
*
url
,
const
WS_ASYNC_CONTEXT
*
ctx
,
WS_ERROR
*
error
)
HRESULT
WINAPI
WsOpenListener
(
WS_LISTENER
*
handle
,
const
WS_STRING
*
url
,
const
WS_ASYNC_CONTEXT
*
ctx
,
WS_ERROR
*
error
)
{
struct
listener
*
listener
=
(
struct
listener
*
)
handle
;
HRESULT
hr
;
...
...
include/webservices.h
View file @
9928202d
...
...
@@ -1726,7 +1726,7 @@ HRESULT WINAPI WsInitializeMessage(WS_MESSAGE*, WS_MESSAGE_INITIALIZATION, WS_ME
HRESULT
WINAPI
WsMoveReader
(
WS_XML_READER
*
,
WS_MOVE_TO
,
BOOL
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsMoveWriter
(
WS_XML_WRITER
*
,
WS_MOVE_TO
,
BOOL
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsOpenChannel
(
WS_CHANNEL
*
,
const
WS_ENDPOINT_ADDRESS
*
,
const
WS_ASYNC_CONTEXT
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsOpenListener
(
WS_LISTENER
*
,
WS_STRING
*
,
const
WS_ASYNC_CONTEXT
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsOpenListener
(
WS_LISTENER
*
,
const
WS_STRING
*
,
const
WS_ASYNC_CONTEXT
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsOpenServiceProxy
(
WS_SERVICE_PROXY
*
,
const
WS_ENDPOINT_ADDRESS
*
,
const
WS_ASYNC_CONTEXT
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsReadAttribute
(
WS_XML_READER
*
,
const
WS_ATTRIBUTE_DESCRIPTION
*
,
WS_READ_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