1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#ifndef _INC_WSDUTIL
#define _INC_WSDUTIL
#ifndef _INC_WSDAPI
#error Please include wsdapi.h instead of this header. This header cannot be used directly.
#endif
#if (_WIN32_WINNT >= 0x0600)
#ifdef __cplusplus
extern "C" {
#endif
void* WINAPI WSDAllocateLinkedMemory(
void *pParent,
size_t cbSize
);
void WINAPI WSDAttachLinkedMemory(
void *pParent,
void *pChild
);
void WINAPI WSDDetachLinkedMemory(
void *pVoid
);
void WINAPI WSDFreeLinkedMemory(
void *pVoid
);
HRESULT WINAPI WSDGenerateFault(
const LPCWSTR *pszCode,
const LPCWSTR *pszSubCode,
const LPCWSTR *pszReason,
const LPCWSTR *pszDetail,
IWSDXMLContext *pContext,
WSD_SOAP_FAULT **ppFault
);
#define WSDAPI_OPTION_MAX_INBOUND_MESSAGE_SIZE 0x0001
HRESULT WINAPI WSDGenerateFaultEx(
WSDXML_NAME *pCode,
WSDXML_NAME *pSubCode,
WSD_LOCALIZED_STRING_LIST *pReasons,
const LPCWSTR *pszDetail,
WSD_SOAP_FAULT **ppFault
);
HRESULT WINAPI WSDGetConfigurationOption(
DWORD dwOption,
LPVOID pVoid,
DWORD cbOutBuffer
);
HRESULT WINAPI WSDSetConfigurationOption(
DWORD dwOption,
LPVOID pVoid,
DWORD cbInBuffer
);
STDAPI WSDXMLAddChild(
WSDXML_ELEMENT *pParent,
WSDXML_ELEMENT *pChild
);
STDAPI WSDXMLAddSibling(
WSDXML_ELEMENT *pFirst,
WSDXML_ELEMENT *pSecond
);
STDAPI WSDXMLBuildAnyForSingleElement(
WSDXML_NAME *pElementName,
const LPCWSTR *pszText,
WSDXML_ELEMENT **ppAny
);
HRESULT WINAPI WSDXMLCleanupElement(
WSDXML_ELEMENT *pAny
);
STDAPI WSDXMLGetValueFromAny(
const WCHAR *pszNamespace,
const WCHAR *pszName,
WSDXML_ELEMENT *pAny,
const LPCWSTR *ppszValue
);
#ifdef __cplusplus
}
#endif
#endif /*(_WIN32_WINNT >= 0x0600)*/
#endif /*_INC_WSDUTIL*/
|