Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
85055298
Commit
85055298
authored
Mar 12, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Mar 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Added partial XMLView IPersistMoniker_Load implementation.
parent
55d34f47
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
domdoc.c
dlls/msxml3/domdoc.c
+2
-3
msxml_private.h
dlls/msxml3/msxml_private.h
+0
-1
xmlview.c
dlls/msxml3/xmlview.c
+0
-0
No files found.
dlls/msxml3/domdoc.c
View file @
85055298
...
...
@@ -1996,9 +1996,8 @@ static HRESULT domdoc_onDataAvailable(void *obj, char *ptr, DWORD len)
return
S_OK
;
}
HRESULT
domdoc_load_moniker
(
IXMLDOMDocument3
*
iface
,
IMoniker
*
mon
)
static
HRESULT
domdoc_load_moniker
(
domdoc
*
This
,
IMoniker
*
mon
)
{
domdoc
*
This
=
impl_from_IXMLDOMDocument3
(
iface
);
bsc_t
*
bsc
;
HRESULT
hr
;
...
...
@@ -2151,7 +2150,7 @@ static HRESULT WINAPI domdoc_load(
hr
=
create_moniker_from_url
(
filename
,
&
mon
);
if
(
SUCCEEDED
(
hr
)
)
{
hr
=
domdoc_load_moniker
(
iface
,
mon
);
hr
=
domdoc_load_moniker
(
This
,
mon
);
IMoniker_Release
(
mon
);
}
...
...
dlls/msxml3/msxml_private.h
View file @
85055298
...
...
@@ -490,7 +490,6 @@ typedef struct bsc_t bsc_t;
HRESULT
create_moniker_from_url
(
LPCWSTR
,
IMoniker
**
)
DECLSPEC_HIDDEN
;
HRESULT
bind_url
(
IMoniker
*
,
HRESULT
(
*
onDataAvailable
)(
void
*
,
char
*
,
DWORD
),
void
*
,
bsc_t
**
)
DECLSPEC_HIDDEN
;
HRESULT
detach_bsc
(
bsc_t
*
)
DECLSPEC_HIDDEN
;
HRESULT
domdoc_load_moniker
(
IXMLDOMDocument3
*
,
IMoniker
*
)
DECLSPEC_HIDDEN
;
const
char
*
debugstr_variant
(
const
VARIANT
*
)
DECLSPEC_HIDDEN
;
...
...
dlls/msxml3/xmlview.c
View file @
85055298
This diff is collapsed.
Click to expand it.
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