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
7db3593a
Commit
7db3593a
authored
Aug 17, 2021
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 17, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Do not depend on libxml2 for urlmon integration code.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f48d1f79
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
14 deletions
+8
-14
bsc.c
dlls/msxml3/bsc.c
+1
-7
msxml_dispex.h
dlls/msxml3/msxml_dispex.h
+7
-0
msxml_private.h
dlls/msxml3/msxml_private.h
+0
-7
No files found.
dlls/msxml3/bsc.c
View file @
7db3593a
...
...
@@ -19,13 +19,7 @@
#define COBJMACROS
#define NONAMELESSUNION
#include "config.h"
#include <stdarg.h>
#ifdef HAVE_LIBXML2
# include <libxml/parser.h>
# include <libxml/xmlerror.h>
#endif
#include "windef.h"
#include "winbase.h"
...
...
@@ -39,7 +33,7 @@
#include "wine/debug.h"
#include "msxml_
private
.h"
#include "msxml_
dispex
.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
...
...
dlls/msxml3/msxml_dispex.h
View file @
7db3593a
...
...
@@ -145,6 +145,13 @@ static inline HRESULT return_bstrn(const WCHAR *value, int len, BSTR *p)
}
extern
HRESULT
dom_document_create
(
MSXML_VERSION
class_version
,
void
**
document
)
DECLSPEC_HIDDEN
;
typedef
struct
bsc_t
bsc_t
;
HRESULT
create_moniker_from_url
(
LPCWSTR
,
IMoniker
**
)
DECLSPEC_HIDDEN
;
HRESULT
create_uri
(
IUri
*
base
,
const
WCHAR
*
,
IUri
**
)
DECLSPEC_HIDDEN
;
HRESULT
bind_url
(
IMoniker
*
,
HRESULT
(
*
onDataAvailable
)(
void
*
,
char
*
,
DWORD
),
void
*
,
bsc_t
**
)
DECLSPEC_HIDDEN
;
HRESULT
detach_bsc
(
bsc_t
*
)
DECLSPEC_HIDDEN
;
IUri
*
get_base_uri
(
IUnknown
*
site
)
DECLSPEC_HIDDEN
;
#endif
/* __MSXML_DISPEX__ */
dlls/msxml3/msxml_private.h
View file @
7db3593a
...
...
@@ -397,13 +397,6 @@ extern HRESULT MXNamespaceManager_create(void**) DECLSPEC_HIDDEN;
extern
HRESULT
XMLParser_create
(
void
**
)
DECLSPEC_HIDDEN
;
extern
HRESULT
XMLView_create
(
void
**
)
DECLSPEC_HIDDEN
;
typedef
struct
bsc_t
bsc_t
;
HRESULT
create_moniker_from_url
(
LPCWSTR
,
IMoniker
**
)
DECLSPEC_HIDDEN
;
HRESULT
create_uri
(
IUri
*
base
,
const
WCHAR
*
,
IUri
**
)
DECLSPEC_HIDDEN
;
HRESULT
bind_url
(
IMoniker
*
,
HRESULT
(
*
onDataAvailable
)(
void
*
,
char
*
,
DWORD
),
void
*
,
bsc_t
**
)
DECLSPEC_HIDDEN
;
HRESULT
detach_bsc
(
bsc_t
*
)
DECLSPEC_HIDDEN
;
/* Error Codes - not defined anywhere in the public headers */
#define E_XML_ELEMENT_UNDECLARED 0xC00CE00D
#define E_XML_ELEMENT_ID_NOT_FOUND 0xC00CE00E
...
...
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