Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
75087023
Commit
75087023
authored
May 23, 2017
by
Hans Leidekker
Committed by
Alexandre Julliard
May 23, 2017
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
8fc1a4cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
14 deletions
+31
-14
webservices.h
include/webservices.h
+31
-14
No files found.
include/webservices.h
View file @
75087023
...
...
@@ -211,16 +211,46 @@ typedef enum {
WS_CHARSET_UTF16BE
}
WS_CHARSET
;
typedef
struct
_WS_XML_DICTIONARY
{
GUID
guid
;
struct
_WS_XML_STRING
*
strings
;
ULONG
stringCount
;
BOOL
isConst
;
}
WS_XML_DICTIONARY
;
typedef
struct
_WS_XML_STRING
{
ULONG
length
;
BYTE
*
bytes
;
WS_XML_DICTIONARY
*
dictionary
;
ULONG
id
;
}
WS_XML_STRING
;
typedef
struct
_WS_XML_READER_TEXT_ENCODING
{
WS_XML_READER_ENCODING
encoding
;
WS_CHARSET
charSet
;
}
WS_XML_READER_TEXT_ENCODING
;
typedef
struct
_WS_XML_READER_BINARY_ENCODING
{
WS_XML_READER_ENCODING
encoding
;
WS_XML_DICTIONARY
*
staticDictionary
;
WS_XML_DICTIONARY
*
dynamicDictionary
;
}
WS_XML_READER_BINARY_ENCODING
;
typedef
struct
_WS_XML_WRITER_TEXT_ENCODING
{
WS_XML_WRITER_ENCODING
encoding
;
WS_CHARSET
charSet
;
}
WS_XML_WRITER_TEXT_ENCODING
;
typedef
HRESULT
(
CALLBACK
*
WS_DYNAMIC_STRING_CALLBACK
)
(
void
*
,
const
WS_XML_STRING
*
,
BOOL
*
,
ULONG
*
,
WS_ERROR
*
);
typedef
struct
_WS_XML_WRITER_BINARY_ENCODING
{
WS_XML_WRITER_ENCODING
encoding
;
WS_XML_DICTIONARY
*
staticDictionary
;
WS_DYNAMIC_STRING_CALLBACK
dynamicStringCallback
;
void
*
dynamicStringCallbackState
;
}
WS_XML_WRITER_BINARY_ENCODING
;
typedef
enum
{
WS_XML_READER_INPUT_TYPE_BUFFER
=
1
,
WS_XML_READER_INPUT_TYPE_STREAM
=
2
...
...
@@ -274,20 +304,6 @@ typedef struct _WS_XML_READER_STREAM_INPUT {
void
*
readCallbackState
;
}
WS_XML_READER_STREAM_INPUT
;
typedef
struct
_WS_XML_DICTIONARY
{
GUID
guid
;
struct
_WS_XML_STRING
*
strings
;
ULONG
stringCount
;
BOOL
isConst
;
}
WS_XML_DICTIONARY
;
typedef
struct
_WS_XML_STRING
{
ULONG
length
;
BYTE
*
bytes
;
WS_XML_DICTIONARY
*
dictionary
;
ULONG
id
;
}
WS_XML_STRING
;
typedef
enum
{
WS_ELEMENT_TYPE_MAPPING
=
1
,
WS_ATTRIBUTE_TYPE_MAPPING
=
2
,
...
...
@@ -1568,6 +1584,7 @@ void WINAPI WsFreeReader(WS_XML_READER*);
void
WINAPI
WsFreeServiceProxy
(
WS_SERVICE_PROXY
*
);
void
WINAPI
WsFreeWriter
(
WS_XML_WRITER
*
);
HRESULT
WINAPI
WsGetChannelProperty
(
WS_CHANNEL
*
,
WS_CHANNEL_PROPERTY_ID
,
void
*
,
ULONG
,
WS_ERROR
*
);
HRESULT
WINAPI
WsGetDictionary
(
WS_ENCODING
,
WS_XML_DICTIONARY
**
,
WS_ERROR
*
);
HRESULT
WINAPI
WsGetErrorProperty
(
WS_ERROR
*
,
WS_ERROR_PROPERTY_ID
,
void
*
,
ULONG
);
HRESULT
WINAPI
WsGetErrorString
(
WS_ERROR
*
,
ULONG
,
WS_STRING
*
);
HRESULT
WINAPI
WsGetHeapProperty
(
WS_HEAP
*
,
WS_HEAP_PROPERTY_ID
,
void
*
,
ULONG
,
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