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
bc7228a4
Commit
bc7228a4
authored
Aug 25, 2016
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 26, 2016
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
e8d72a0e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
webservices.h
include/webservices.h
+24
-0
No files found.
include/webservices.h
View file @
bc7228a4
...
@@ -74,6 +74,7 @@ typedef struct _WS_CUSTOM_HTTP_PROXY WS_CUSTOM_HTTP_PROXY;
...
@@ -74,6 +74,7 @@ typedef struct _WS_CUSTOM_HTTP_PROXY WS_CUSTOM_HTTP_PROXY;
typedef
struct
_WS_HTTP_MESSAGE_MAPPING
WS_HTTP_MESSAGE_MAPPING
;
typedef
struct
_WS_HTTP_MESSAGE_MAPPING
WS_HTTP_MESSAGE_MAPPING
;
typedef
struct
_WS_HTTP_HEADER_MAPPING
WS_HTTP_HEADER_MAPPING
;
typedef
struct
_WS_HTTP_HEADER_MAPPING
WS_HTTP_HEADER_MAPPING
;
typedef
struct
_WS_HTTP_REDIRECT_CALLBACK_CONTEXT
WS_HTTP_REDIRECT_CALLBACK_CONTEXT
;
typedef
struct
_WS_HTTP_REDIRECT_CALLBACK_CONTEXT
WS_HTTP_REDIRECT_CALLBACK_CONTEXT
;
typedef
struct
_WS_PROXY_MESSAGE_CALLBACK_CONTEXT
WS_PROXY_MESSAGE_CALLBACK_CONTEXT
;
struct
_WS_STRUCT_DESCRIPTION
;
struct
_WS_STRUCT_DESCRIPTION
;
struct
_WS_XML_STRING
;
struct
_WS_XML_STRING
;
...
@@ -388,6 +389,16 @@ typedef struct _WS_WSZ_DESCRIPTION {
...
@@ -388,6 +389,16 @@ typedef struct _WS_WSZ_DESCRIPTION {
ULONG
maxCharCount
;
ULONG
maxCharCount
;
}
WS_WSZ_DESCRIPTION
;
}
WS_WSZ_DESCRIPTION
;
typedef
struct
_WS_STRING_DESCRIPTION
{
ULONG
minCharCount
;
ULONG
maxCharCount
;
}
WS_STRING_DESCRIPTION
;
typedef
struct
_WS_XML_STRING_DESCRIPTION
{
ULONG
minByteCount
;
ULONG
maxByteCount
;
}
WS_XML_STRING_DESCRIPTION
;
struct
_WS_ENUM_VALUE
{
struct
_WS_ENUM_VALUE
{
int
value
;
int
value
;
WS_XML_STRING
*
name
;
WS_XML_STRING
*
name
;
...
@@ -1346,6 +1357,17 @@ typedef enum
...
@@ -1346,6 +1357,17 @@ typedef enum
typedef
void
(
CALLBACK
*
WS_MESSAGE_DONE_CALLBACK
)
typedef
void
(
CALLBACK
*
WS_MESSAGE_DONE_CALLBACK
)
(
void
*
);
(
void
*
);
typedef
HRESULT
(
CALLBACK
*
WS_PROXY_MESSAGE_CALLBACK
)
(
WS_MESSAGE
*
,
WS_HEAP
*
,
void
*
,
WS_ERROR
*
);
struct
_WS_PROXY_MESSAGE_CALLBACK_CONTEXT
{
WS_PROXY_MESSAGE_CALLBACK
callback
;
void
*
state
;
};
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
,
HRESULT
WINAPI
WsAddMappedHeader
(
WS_MESSAGE
*
,
const
WS_XML_STRING
*
,
WS_TYPE
,
WS_WRITE_OPTION
,
const
void
*
,
ULONG
,
WS_ERROR
*
);
const
void
*
,
ULONG
,
WS_ERROR
*
);
HRESULT
WINAPI
WsAddressMessage
(
WS_MESSAGE
*
,
const
WS_ENDPOINT_ADDRESS
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsAddressMessage
(
WS_MESSAGE
*
,
const
WS_ENDPOINT_ADDRESS
*
,
WS_ERROR
*
);
...
@@ -1432,6 +1454,8 @@ HRESULT WINAPI WsReadValue(WS_XML_READER*, WS_VALUE_TYPE, void*, ULONG, WS_ERROR
...
@@ -1432,6 +1454,8 @@ HRESULT WINAPI WsReadValue(WS_XML_READER*, WS_VALUE_TYPE, void*, ULONG, WS_ERROR
HRESULT
WINAPI
WsReceiveMessage
(
WS_CHANNEL
*
,
WS_MESSAGE
*
,
const
WS_MESSAGE_DESCRIPTION
**
,
ULONG
,
HRESULT
WINAPI
WsReceiveMessage
(
WS_CHANNEL
*
,
WS_MESSAGE
*
,
const
WS_MESSAGE_DESCRIPTION
**
,
ULONG
,
WS_RECEIVE_OPTION
,
WS_READ_OPTION
,
WS_HEAP
*
,
void
*
,
ULONG
,
ULONG
*
,
WS_RECEIVE_OPTION
,
WS_READ_OPTION
,
WS_HEAP
*
,
void
*
,
ULONG
,
ULONG
*
,
const
WS_ASYNC_CONTEXT
*
,
WS_ERROR
*
);
const
WS_ASYNC_CONTEXT
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsRemoveCustomHeader
(
WS_MESSAGE
*
,
const
WS_XML_STRING
*
,
const
WS_XML_STRING
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsRemoveHeader
(
WS_MESSAGE
*
,
WS_HEADER_TYPE
,
WS_ERROR
*
);
HRESULT
WINAPI
WsRemoveHeader
(
WS_MESSAGE
*
,
WS_HEADER_TYPE
,
WS_ERROR
*
);
HRESULT
WINAPI
WsRemoveMappedHeader
(
WS_MESSAGE
*
,
const
WS_XML_STRING
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsRemoveMappedHeader
(
WS_MESSAGE
*
,
const
WS_XML_STRING
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsRemoveNode
(
const
WS_XML_NODE_POSITION
*
,
WS_ERROR
*
);
HRESULT
WINAPI
WsRemoveNode
(
const
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