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
49638f1a
Commit
49638f1a
authored
Nov 10, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 10, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add missing Web Services declarations.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
49776353
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
webservices.h
include/webservices.h
+19
-0
No files found.
include/webservices.h
View file @
49638f1a
...
...
@@ -388,6 +388,21 @@ typedef struct _WS_XML_NODE {
}
WS_XML_NODE
;
typedef
enum
{
WS_MOVE_TO_ROOT_ELEMENT
,
WS_MOVE_TO_NEXT_ELEMENT
,
WS_MOVE_TO_PREVIOUS_ELEMENT
,
WS_MOVE_TO_CHILD_ELEMENT
,
WS_MOVE_TO_END_ELEMENT
,
WS_MOVE_TO_PARENT_ELEMENT
,
WS_MOVE_TO_NEXT_NODE
,
WS_MOVE_TO_PREVIOUS_NODE
,
WS_MOVE_TO_FIRST_NODE
,
WS_MOVE_TO_BOF
,
WS_MOVE_TO_EOF
,
WS_MOVE_TO_CHILD_NODE
}
WS_MOVE_TO
;
typedef
enum
{
WS_XML_TEXT_TYPE_UTF8
=
1
,
WS_XML_TEXT_TYPE_UTF16
=
2
,
WS_XML_TEXT_TYPE_BASE64
=
3
,
...
...
@@ -471,6 +486,8 @@ HRESULT WINAPI WsGetReaderProperty(WS_XML_READER*, WS_XML_READER_PROPERTY_ID, vo
HRESULT
WINAPI
WsGetWriterProperty
(
WS_XML_WRITER
*
,
WS_XML_WRITER_PROPERTY_ID
,
void
*
,
ULONG
,
WS_ERROR
*
);
HRESULT
WINAPI
WsGetXmlAttribute
(
WS_XML_READER
*
,
const
WS_XML_STRING
*
,
WS_HEAP
*
,
WCHAR
**
,
ULONG
*
,
WS_ERROR
*
);
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
WsReadAttribute
(
WS_XML_READER
*
,
const
WS_ATTRIBUTE_DESCRIPTION
*
,
WS_READ_OPTION
,
WS_HEAP
*
,
void
*
,
ULONG
,
WS_ERROR
*
);
HRESULT
WINAPI
WsReadEndElement
(
WS_XML_READER
*
,
WS_ERROR
*
);
...
...
@@ -492,10 +509,12 @@ HRESULT WINAPI WsSetOutputToBuffer(WS_XML_WRITER*, WS_XML_BUFFER*, const WS_XML_
ULONG
,
WS_ERROR
*
);
HRESULT
WINAPI
WsWriteEndAttribute
(
WS_XML_WRITER
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsWriteEndElement
(
WS_XML_WRITER
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsWriteEndStartElement
(
WS_XML_WRITER
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsWriteStartAttribute
(
WS_XML_WRITER
*
,
const
WS_XML_STRING
*
,
const
WS_XML_STRING
*
,
const
WS_XML_STRING
*
,
BOOL
,
WS_ERROR
*
);
HRESULT
WINAPI
WsWriteStartElement
(
WS_XML_WRITER
*
,
const
WS_XML_STRING
*
,
const
WS_XML_STRING
*
,
const
WS_XML_STRING
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsWriteText
(
WS_XML_WRITER
*
,
const
WS_XML_TEXT
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsWriteType
(
WS_XML_WRITER
*
,
WS_TYPE_MAPPING
,
WS_TYPE
,
const
void
*
,
WS_WRITE_OPTION
,
const
void
*
,
ULONG
,
WS_ERROR
*
);
HRESULT
WINAPI
WsXmlStringEquals
(
const
WS_XML_STRING
*
,
const
WS_XML_STRING
*
,
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