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
935e9eb8
Commit
935e9eb8
authored
Oct 14, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
webservices: Add a stub implementation of WsGetErrorString.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
36a88cdb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
reader.c
dlls/webservices/reader.c
+9
-0
webservices.spec
dlls/webservices/webservices.spec
+1
-1
webservices.h
include/webservices.h
+1
-1
No files found.
dlls/webservices/reader.c
View file @
935e9eb8
...
...
@@ -513,6 +513,15 @@ HRESULT WINAPI WsGetErrorProperty( WS_ERROR *handle, WS_ERROR_PROPERTY_ID id, vo
}
/**************************************************************************
* WsGetErrorString [webservices.@]
*/
HRESULT
WINAPI
WsGetErrorString
(
WS_ERROR
*
handle
,
ULONG
index
,
WS_STRING
*
str
)
{
FIXME
(
"%p %u %p: stub
\n
"
,
handle
,
index
,
str
);
return
E_NOTIMPL
;
}
/**************************************************************************
* WsGetHeapProperty [webservices.@]
*/
HRESULT
WINAPI
WsGetHeapProperty
(
WS_HEAP
*
handle
,
WS_HEAP_PROPERTY_ID
id
,
void
*
buf
,
...
...
dlls/webservices/webservices.spec
View file @
935e9eb8
...
...
@@ -63,7 +63,7 @@
@ stub WsGetCustomHeader
@ stub WsGetDictionary
@ stdcall WsGetErrorProperty(ptr long ptr long)
@ st
ub WsGetErrorString
@ st
dcall WsGetErrorString(ptr long ptr)
@ stub WsGetFaultErrorDetail
@ stub WsGetFaultErrorProperty
@ stub WsGetHeader
...
...
include/webservices.h
View file @
935e9eb8
...
...
@@ -360,7 +360,7 @@ void WINAPI WsFreeError(WS_ERROR*);
void
WINAPI
WsFreeHeap
(
WS_HEAP
*
);
void
WINAPI
WsFreeReader
(
WS_XML_READER
*
);
HRESULT
WINAPI
WsGetErrorProperty
(
WS_ERROR
*
,
WS_ERROR_PROPERTY_ID
,
void
*
,
ULONG
);
HRESULT
WINAPI
WsGetErrorString
(
WS_ERROR
*
,
ULONG
,
WS_STRING
*
*
);
HRESULT
WINAPI
WsGetErrorString
(
WS_ERROR
*
,
ULONG
,
WS_STRING
*
);
HRESULT
WINAPI
WsGetHeapProperty
(
WS_HEAP
*
,
WS_HEAP_PROPERTY_ID
,
void
*
,
ULONG
,
WS_ERROR
*
);
HRESULT
WINAPI
WsGetReaderNode
(
WS_XML_READER
*
,
const
WS_XML_NODE
**
,
WS_ERROR
*
);
HRESULT
WINAPI
WsGetReaderPosition
(
WS_XML_READER
*
,
WS_XML_NODE_POSITION
*
,
WS_ERROR
*
);
...
...
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